mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 22:01:30 +00:00
Remove Duplicative MySQL Error: Unable to clear groups:
This commit is contained in:
parent
b14c3c8674
commit
5a8e45faab
@ -3164,8 +3164,8 @@ void Database::SetGroupID(const char* name, uint32 id, uint32 charid, uint32 ism
|
||||
|
||||
void Database::ClearAllGroups(void)
|
||||
{
|
||||
std::string query("delete from group_id");
|
||||
auto results = QueryDatabase(query);
|
||||
std::string query("DELETE FROM `group_id`");
|
||||
QueryDatabase(query);
|
||||
|
||||
if (!results.Success())
|
||||
std::cout << "Unable to clear groups: " << results.ErrorMessage() << std::endl;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user