diff options
author | ccrs <ccrs@users.noreply.github.com> | 2019-06-29 19:32:13 +0200 |
---|---|---|
committer | ccrs <ccrs@users.noreply.github.com> | 2019-06-29 19:32:13 +0200 |
commit | 14788ce026b660fe14207fa8865df4604050eb2b (patch) | |
tree | 2cb0099a890b31cc1b4e7ec36a0954ded98d88d7 /src/server/game/Instances/InstanceScript.cpp | |
parent | 953b05459a517fb83f18047ab82ac09021bc9440 (diff) |
Core/Instance: add new method
Diffstat (limited to 'src/server/game/Instances/InstanceScript.cpp')
-rw-r--r-- | src/server/game/Instances/InstanceScript.cpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/server/game/Instances/InstanceScript.cpp b/src/server/game/Instances/InstanceScript.cpp index b451fd6f1f1..dd01f46f38a 100644 --- a/src/server/game/Instances/InstanceScript.cpp +++ b/src/server/game/Instances/InstanceScript.cpp @@ -708,6 +708,34 @@ void InstanceScript::DoCastSpellOnPlayers(uint32 spell, bool includePets /*= fal } } +void InstanceScript::DoCastSpellOnPlayer(Player* player, uint32 spell, bool includePets /*= false*/, bool includeControlled /*= false*/) +{ + if (!player) + return; + + player->CastSpell(player, spell, true); + + if (!includePets) + return; + + for (uint8 itr2 = 0; itr2 < MAX_SUMMON_SLOT; ++itr2) + { + if (ObjectGuid summonGUID = player->m_SummonSlot[itr2]) + if (Creature* summon = instance->GetCreature(summonGUID)) + summon->CastSpell(player, spell, true); + } + + if (!includeControlled) + return; + + for (auto itr2 = player->m_Controlled.begin(); itr2 != player->m_Controlled.end(); ++itr2) + { + if (Unit* controlled = *itr2) + if (controlled->IsInWorld() && controlled->GetTypeId() == TYPEID_UNIT) + controlled->CastSpell(player, spell, true); + } +} + bool InstanceScript::ServerAllowsTwoSideGroups() { return sWorld->getBoolConfig(CONFIG_ALLOW_TWO_SIDE_INTERACTION_GROUP); |