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

This commit is contained in:
Akkadius 2015-01-19 05:25:07 -06:00
parent de0de39e08
commit be37525414

View File

@ -73,7 +73,6 @@ const NPCType *Horse::BuildHorseType(uint16 spell_id) {
std::string query = StringFormat("SELECT race, gender, texture, mountspeed FROM horses WHERE filename = '%s'", fileName);
auto results = database.QueryDatabase(query);
if (!results.Success()) {
Log.Out(Logs::General, Logs::Error, "Error in Mount query '%s': %s", query.c_str(), results.ErrorMessage().c_str());
return nullptr;
}