diff options
| author | Kitzunu <24550914+Kitzunu@users.noreply.github.com> | 2020-12-24 22:38:56 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-24 21:38:56 +0000 |
| commit | 1ed80e95969ce672cdb8bd6d17de58cfb0785f6d (patch) | |
| tree | 54576097eff1149e891ae1e43c2300f32d7bb306 /src/common/Database/Implementation/CharacterDatabase.cpp | |
| parent | 6a95e618018b7b450417d70d5eaf81bbb6369876 (diff) | |
fix(Core/Guild): Implement gender in guild (#4017)
Diffstat (limited to 'src/common/Database/Implementation/CharacterDatabase.cpp')
| -rw-r--r-- | src/common/Database/Implementation/CharacterDatabase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/Database/Implementation/CharacterDatabase.cpp b/src/common/Database/Implementation/CharacterDatabase.cpp index 4fed23ba1e..c76a0c070c 100644 --- a/src/common/Database/Implementation/CharacterDatabase.cpp +++ b/src/common/Database/Implementation/CharacterDatabase.cpp @@ -200,7 +200,7 @@ void CharacterDatabaseConnection::DoPrepareStatements() PrepareStatement(CHAR_DEL_GUILD_MEMBER_WITHDRAW, "TRUNCATE guild_member_withdraw", CONNECTION_ASYNC); // 0: uint32, 1: uint32, 2: uint32 - PrepareStatement(CHAR_SEL_CHAR_DATA_FOR_GUILD, "SELECT name, level, class, zone, account FROM characters WHERE guid = ?", CONNECTION_SYNCH); + PrepareStatement(CHAR_SEL_CHAR_DATA_FOR_GUILD, "SELECT name, level, class, gender, zone, account FROM characters WHERE guid = ?", CONNECTION_SYNCH); // Chat channel handling PrepareStatement(CHAR_INS_CHANNEL, "INSERT INTO channels(channelId, name, team, announce, lastUsed) VALUES (?, ?, ?, ?, UNIX_TIMESTAMP())", CONNECTION_ASYNC); |
