diff options
Diffstat (limited to 'src/game/DuelHandler.cpp')
-rw-r--r-- | src/game/DuelHandler.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game/DuelHandler.cpp b/src/game/DuelHandler.cpp index d9854d900c8..d6aee4e0563 100644 --- a/src/game/DuelHandler.cpp +++ b/src/game/DuelHandler.cpp @@ -25,6 +25,7 @@ #include "Opcodes.h" #include "UpdateData.h" #include "Player.h" +#include "SpellId.h" void WorldSession::HandleDuelAcceptedOpcode(WorldPacket& recvPacket) { @@ -70,7 +71,7 @@ void WorldSession::HandleDuelCancelledOpcode(WorldPacket& recvPacket) if(GetPlayer()->duel->opponent) GetPlayer()->duel->opponent->CombatStopWithPets(true); - GetPlayer()->CastSpell(GetPlayer(), SPELL_ID_DUEL_BEG, true); // beg + GetPlayer()->CastSpell(GetPlayer(), SPELL_GROVEL_7267, true); // beg GetPlayer()->DuelComplete(DUEL_WON); return; } |