More cleanup of some QueryDatabase references that no longer need auto results

This commit is contained in:
Akkadius
2015-01-19 05:39:51 -06:00
parent 99baba4762
commit 98a49ad086
3 changed files with 5 additions and 17 deletions
+1 -3
View File
@@ -376,8 +376,6 @@ void Client::RemoveTitle(int titleSet) {
std::string query = StringFormat("DELETE FROM player_titlesets "
"WHERE `title_set` = %i AND `char_id` = %i",
titleSet, CharacterID());
auto results = database.QueryDatabase(query);
if (!results.Success())
database.QueryDatabase(query);
}