-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Warrior: Proper stance logic for Sweeping Strikes (#128)
* Warrior: Prebuilt arms weapon specialization talents * Warrior: Proper stance logic for Sweeping Strikes Stance Dance: Arms Warrior pools rage in Battle Stance until Sweeping Strikes is castable until returning back to Berserk Stance * PvE/PvP/Raid logic + Code cleanup * Ignore mortal strike and heroic strike while pooling rage * Update ArmsWarriorStrategy.cpp * Disable Battle Stance spam if SS is on cooldown
- Loading branch information
Showing
2 changed files
with
114 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,6 +71,7 @@ namespace ai | |
|
||
protected: | ||
virtual void InitCombatTriggers(std::list<TriggerNode*>& triggers) override; | ||
void InitCombatMultipliers(std::list<Multiplier*>& multipliers); | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
ileboii
Author
Contributor
|
||
virtual void InitNonCombatTriggers(std::list<TriggerNode*>& triggers) override; | ||
}; | ||
|
||
|
Missing
virtual ... override
?