mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-22 21:26:23 +00:00
fix(Core/Guild): Implement gender in guild (#4017)
This commit is contained in:
@@ -289,7 +289,7 @@ public: // pussywizard: public class Member
|
||||
}
|
||||
|
||||
void SetStats(Player* player);
|
||||
void SetStats(std::string const& name, uint8 level, uint8 _class, uint32 zoneId, uint32 accountId);
|
||||
void SetStats(std::string const& name, uint8 level, uint8 _class, uint8 gender, uint32 zoneId, uint32 accountId);
|
||||
bool CheckStats() const;
|
||||
|
||||
void SetPublicNote(std::string const& publicNote);
|
||||
@@ -314,6 +314,7 @@ public: // pussywizard: public class Member
|
||||
std::string GetOfficerNote() const { return m_officerNote; }
|
||||
uint8 GetClass() const { return m_class; }
|
||||
uint8 GetLevel() const { return m_level; }
|
||||
uint8 GetGender() const { return m_gender; }
|
||||
uint8 GetFlags() const { return m_flags; }
|
||||
uint32 GetZoneId() const { return m_zoneId; }
|
||||
bool IsOnline() { return (m_flags & GUILDMEMBER_STATUS_ONLINE); }
|
||||
@@ -339,6 +340,7 @@ public: // pussywizard: public class Member
|
||||
uint32 m_zoneId;
|
||||
uint8 m_level;
|
||||
uint8 m_class;
|
||||
uint8 m_gender;
|
||||
uint8 m_flags;
|
||||
uint64 m_logoutTime;
|
||||
uint32 m_accountId;
|
||||
|
||||
Reference in New Issue
Block a user