mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/PacketIO: Initialize some vars
This commit is contained in:
@@ -63,8 +63,8 @@ namespace WorldPackets
|
||||
void Read() override;
|
||||
|
||||
ObjectGuid PetGUID;
|
||||
uint32 SpellID;
|
||||
bool AutocastEnabled;
|
||||
uint32 SpellID = 0;
|
||||
bool AutocastEnabled = false;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
@@ -556,7 +556,7 @@ namespace WorldPackets
|
||||
|
||||
void Read() override;
|
||||
|
||||
uint32 QuestID;
|
||||
uint32 QuestID = 0;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
@@ -80,7 +80,7 @@ namespace WorldPackets
|
||||
void Read() override;
|
||||
|
||||
ObjectGuid PetGUID;
|
||||
uint32 SpellID;
|
||||
uint32 SpellID = 0;
|
||||
};
|
||||
|
||||
class RequestCategoryCooldowns final : public ClientPacket
|
||||
|
||||
Reference in New Issue
Block a user