Fix warning.

This commit is contained in:
Gacko
2015-06-09 19:22:59 +02:00
parent 5456444da3
commit d4ad3843e9

View File

@@ -39,8 +39,8 @@
Pet::Pet(Player* owner, PetType type) :
Guardian(NULL, owner, true), m_usedTalentCount(0), m_removed(false),
m_petType(type), m_duration(0), m_loading(false), m_declinedname(NULL),
m_groupUpdateMask(0)
m_petType(type), m_duration(0), m_loading(false), m_groupUpdateMask(0),
m_declinedname(NULL)
{
ASSERT(GetOwner());