mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-22 03:18:22 +00:00
Fix delete statement
This commit is contained in:
+1
-1
@@ -564,7 +564,7 @@ bool Client::SaveAA(){
|
|||||||
}
|
}
|
||||||
auto results = database.QueryDatabase(rquery);
|
auto results = database.QueryDatabase(rquery);
|
||||||
/* This is another part of the hack to clean up holes left by expendable AAs */
|
/* This is another part of the hack to clean up holes left by expendable AAs */
|
||||||
rquery = StringFormat("DELETE FROM `character_alternate_abilities` WHERE `id` = %u AND `slot` >= %d", character_id, highest);
|
rquery = StringFormat("DELETE FROM `character_alternate_abilities` WHERE `id` = %u AND `slot` > %d", character_id, highest);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user