diff options
| author | Kittnz <Kittnz@users.noreply.github.com> | 2018-09-16 13:17:03 +0200 |
|---|---|---|
| committer | jackpoz <giacomopoz@gmail.com> | 2018-09-16 13:17:03 +0200 |
| commit | 9f945d2f426d66a7081b6b0efce6eece3a315181 (patch) | |
| tree | 767ccfa7f72abf01ede9126db2a5115d5ccf2c4d /src/server/game/Guilds/GuildMgr.cpp | |
| parent | 0d1eed5dabdc86e4a7ae2d5dfc8f5c17636f69a1 (diff) | |
Core/Guild: Implement character gender and send in packet. (#22436)
Closes #22433
Credit xvwyh
Diffstat (limited to 'src/server/game/Guilds/GuildMgr.cpp')
| -rw-r--r-- | src/server/game/Guilds/GuildMgr.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Guilds/GuildMgr.cpp b/src/server/game/Guilds/GuildMgr.cpp index 87a324696ec..56c3691b19e 100644 --- a/src/server/game/Guilds/GuildMgr.cpp +++ b/src/server/game/Guilds/GuildMgr.cpp @@ -185,8 +185,8 @@ void GuildMgr::LoadGuilds() // 0 1 2 3 4 5 6 7 8 9 10 QueryResult result = CharacterDatabase.Query("SELECT guildid, gm.guid, `rank` , pnote, offnote, w.tab0, w.tab1, w.tab2, w.tab3, w.tab4, w.tab5, " - // 11 12 13 14 15 16 17 - "w.money, c.name, c.level, c.class, c.zone, c.account, c.logout_time " + // 11 12 13 14 15 16 17 18 + "w.money, c.name, c.level, c.class, c.gender, c.zone, c.account, c.logout_time " "FROM guild_member gm " "LEFT JOIN guild_member_withdraw w ON gm.guid = w.guid " "LEFT JOIN characters c ON c.guid = gm.guid ORDER BY guildid ASC"); |
