mirror of
https://github.com/EQEmu/Server.git
synced 2026-03-25 04:22:26 +00:00
Fix query in Database::SetRaidGroupLeaderInfo
This commit is contained in:
parent
ef5d475978
commit
36d53f69d6
@ -1984,7 +1984,7 @@ void Database::GetRaidLeadershipInfo(uint32 rid, char *maintank,
|
|||||||
|
|
||||||
void Database::SetRaidGroupLeaderInfo(uint32 gid, uint32 rid)
|
void Database::SetRaidGroupLeaderInfo(uint32 gid, uint32 rid)
|
||||||
{
|
{
|
||||||
std::string query = StringFormat("UPDATE raid_leaders SET leadershipaa = '', WHERE gid = %lu AND rid = %lu",
|
std::string query = StringFormat("UPDATE raid_leaders SET leadershipaa = '' WHERE gid = %lu AND rid = %lu",
|
||||||
(unsigned long)gid, (unsigned long)rid);
|
(unsigned long)gid, (unsigned long)rid);
|
||||||
auto results = QueryDatabase(query);
|
auto results = QueryDatabase(query);
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user