Fix RemoveTempFactions from error message removal

This commit is contained in:
Akkadius 2015-01-20 01:49:38 -06:00
parent 1530bd7937
commit b77a586d14

View File

@ -2993,9 +2993,7 @@ void ZoneDatabase::RemoveTempFactions(Client *client) {
std::string query = StringFormat("DELETE FROM faction_values "
"WHERE temp = 1 AND char_id = %u",
client->CharacterID());
auto results = QueryDatabase(query);
if (!results.Success())
QueryDatabase(query);
}
void ZoneDatabase::LoadPetInfo(Client *client) {