Remove Duplicative MySQL Error: Error in GetMaxSpellID query '%s' %s

This commit is contained in:
Akkadius 2015-01-19 05:26:06 -06:00
parent 6ae05eef38
commit 626aa140da

View File

@ -1468,7 +1468,6 @@ int SharedDatabase::GetMaxSpellID() {
std::string query = "SELECT MAX(id) FROM spells_new";
auto results = QueryDatabase(query);
if (!results.Success()) {
Log.Out(Logs::Detail, Logs::Spells, "Error in GetMaxSpellID query '%s' %s", query.c_str(), results.ErrorMessage().c_str());
return -1;
}