diff options
| author | ccrs <ccrs@users.noreply.github.com> | 2019-06-29 18:36:11 +0200 |
|---|---|---|
| committer | ccrs <ccrs@users.noreply.github.com> | 2019-06-29 18:36:11 +0200 |
| commit | 22b3b21ae3e60c1f38b8e3bf1d7cd50ee5efca21 (patch) | |
| tree | 7a077ea0abe201b9cbbeed982300dccc55b60f36 /src/server/game/Instances/InstanceScript.h | |
| parent | 626a24822b3c6a5d5b9a4b29861ecf393fd9288b (diff) | |
Core/Instances: improve DoRemoveAurasDueToSpellOnPlayers & DoCastSpellOnPlayers handling
Diffstat (limited to 'src/server/game/Instances/InstanceScript.h')
| -rw-r--r-- | src/server/game/Instances/InstanceScript.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Instances/InstanceScript.h b/src/server/game/Instances/InstanceScript.h index 6fd35f7c556..bb830183132 100644 --- a/src/server/game/Instances/InstanceScript.h +++ b/src/server/game/Instances/InstanceScript.h @@ -225,10 +225,10 @@ class TC_GAME_API InstanceScript : public ZoneScript void DoStopTimedAchievement(AchievementCriteriaTimedTypes type, uint32 entry); // Remove Auras due to Spell on all players in instance - void DoRemoveAurasDueToSpellOnPlayers(uint32 spell); + void DoRemoveAurasDueToSpellOnPlayers(uint32 spell, bool includePets = false, bool includeControlled = false); // Cast spell on all players in instance - void DoCastSpellOnPlayers(uint32 spell); + void DoCastSpellOnPlayers(uint32 spell, bool includePets = false, bool includeControlled = false); // Return wether server allow two side groups or not static bool ServerAllowsTwoSideGroups(); |
