From be37525414e77b2f8d1ec377799e5b09af2fec18 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Mon, 19 Jan 2015 05:25:07 -0600 Subject: [PATCH] Remove Duplicative MySQL Error: Error in Mount query '%s': %s --- zone/horse.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/zone/horse.cpp b/zone/horse.cpp index 91e452dc2..c41465a16 100644 --- a/zone/horse.cpp +++ b/zone/horse.cpp @@ -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; }