From 3f561f377d5281d2e3c51807a33f7e1bf600c34d Mon Sep 17 00:00:00 2001 From: Necrovoice Date: Tue, 8 Aug 2017 18:14:22 -0400 Subject: [PATCH] Fixed chest game objects interactions This will fix the "you do not have a pet" message when interacting with chest game objects. Would like to thank - Snowdog on the MaNGOS forums for the fix. --- src/game/WorldHandlers/Spell.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/game/WorldHandlers/Spell.cpp b/src/game/WorldHandlers/Spell.cpp index e99585d93..92d154612 100644 --- a/src/game/WorldHandlers/Spell.cpp +++ b/src/game/WorldHandlers/Spell.cpp @@ -6087,6 +6087,7 @@ SpellCastResult Spell::CheckCast(bool strict) if ((canFailAtMax || skillValue < sWorld.GetConfigMaxSkillValue()) && reqSkillValue > irand(skillValue - 25, skillValue + 37)) return SPELL_FAILED_TRY_AGAIN; } + break; } case SPELL_EFFECT_SUMMON_DEAD_PET: {