Remove Duplicative MySQL Error: Error getting loot table info from database: %s, %s

This commit is contained in:
Akkadius 2015-01-19 05:26:15 -06:00
parent 417777a6f1
commit f4e74705cf

View File

@ -1787,7 +1787,6 @@ void SharedDatabase::GetLootDropInfo(uint32 &loot_drop_count, uint32 &max_loot_d
const std::string query = "SELECT COUNT(*), MAX(id), (SELECT COUNT(*) FROM lootdrop_entries) FROM lootdrop";
auto results = QueryDatabase(query);
if (!results.Success()) {
Log.Out(Logs::General, Logs::Error, "Error getting loot table info from database: %s, %s", query.c_str(), results.ErrorMessage().c_str());
return;
}