mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-31 04:56:20 +00:00
Remove redundant MySQL error message in ClearAllRaidLeaders
This commit is contained in:
+1
-5
@@ -3556,11 +3556,7 @@ void Database::SetRaidGroupLeaderInfo(uint32 gid, uint32 rid)
|
|||||||
void Database::ClearAllRaidLeaders(void)
|
void Database::ClearAllRaidLeaders(void)
|
||||||
{
|
{
|
||||||
std::string query("DELETE from raid_leaders");
|
std::string query("DELETE from raid_leaders");
|
||||||
auto results = QueryDatabase(query);
|
QueryDatabase(query);
|
||||||
|
|
||||||
if (!results.Success())
|
|
||||||
std::cout << "Unable to clear raid leaders: " << results.ErrorMessage() << std::endl;
|
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user