diff options
-rw-r--r-- | src/server/game/Handlers/LootHandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Handlers/LootHandler.cpp b/src/server/game/Handlers/LootHandler.cpp index 9c859bf98a1..633e400ad19 100644 --- a/src/server/game/Handlers/LootHandler.cpp +++ b/src/server/game/Handlers/LootHandler.cpp @@ -227,11 +227,11 @@ void WorldSession::HandleLootOpcode(WorldPacket& recvData) if (!GetPlayer()->IsAlive() || !guid.IsCreatureOrVehicle()) return; - GetPlayer()->SendLoot(guid, LOOT_CORPSE); - // interrupt cast if (GetPlayer()->IsNonMeleeSpellCast(false)) GetPlayer()->InterruptNonMeleeSpells(false); + + GetPlayer()->SendLoot(guid, LOOT_CORPSE); } void WorldSession::HandleLootReleaseOpcode(WorldPacket& recvData) |