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

This commit is contained in:
Akkadius 2015-01-19 05:25:05 -06:00
parent 5604230b55
commit 2e8d9ed6a1

View File

@ -65,7 +65,6 @@ int GetSpellColumns(SharedDatabase *db) {
const std::string query = "DESCRIBE spells_new";
auto results = db->QueryDatabase(query);
if(!results.Success()) {
Log.Out(Logs::General, Logs::Error, "Error in GetSpellColumns query '%s' %s", query.c_str(), results.ErrorMessage().c_str());
return 0;
}