fix warnings

This commit is contained in:
Yunfan Li
2023-05-24 19:48:01 +08:00
parent 429dc03100
commit 637f1dd909
4 changed files with 6 additions and 6 deletions

View File

@@ -24,7 +24,7 @@ struct BotTextEntry
struct ChatReplyData
{
ChatReplyData(uint32 guid, uint32 type, std::string chat) : m_guid(guid), m_type(type), m_chat(chat) {}
ChatReplyData(uint32 guid, uint32 type, std::string chat) : m_type(type), m_guid(guid), m_chat(chat) {}
uint32 m_type, m_guid = 0;
std::string m_chat = "";
};