diff options
Diffstat (limited to 'src/game/SpellHandler.cpp')
-rw-r--r-- | src/game/SpellHandler.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/game/SpellHandler.cpp b/src/game/SpellHandler.cpp index b41a2a0bf46..500947a321c 100644 --- a/src/game/SpellHandler.cpp +++ b/src/game/SpellHandler.cpp @@ -31,6 +31,7 @@ #include "Totem.h" #include "TemporarySummon.h" #include "SpellAuras.h" +#include "CreatureAI.h" void WorldSession::HandleUseItemOpcode(WorldPacket& recvPacket) { @@ -516,6 +517,8 @@ void WorldSession::HandleSpellClick( WorldPacket & recv_data ) if(unit->isVehicle()) _player->EnterVehicle((Vehicle*)unit); + + unit->AI()->DoAction(EVENT_SPELLCLICK); } void WorldSession::HandleMirrrorImageDataRequest( WorldPacket & recv_data ) |