mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-31 09:33:47 +00:00
fix(Core/Player): fix pet not appearing after dismount for warlock (#10899)
This commit is contained in:
@@ -13774,7 +13774,7 @@ bool Player::CanResummonPet(uint32 spellid)
|
||||
else if (spellid == 52150)
|
||||
return false;
|
||||
}
|
||||
else if (getClass() == CLASS_HUNTER || getClass() == CLASS_MAGE)
|
||||
else if (getClass() == CLASS_HUNTER || getClass() == CLASS_MAGE || getClass() == CLASS_WARLOCK)
|
||||
return true;
|
||||
|
||||
if (!HasSpell(spellid))
|
||||
|
||||
Reference in New Issue
Block a user