From 43da95e784f01711015748b363cd8069cee0e514 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Mon, 19 Jan 2015 05:25:06 -0600 Subject: [PATCH] Remove Duplicative MySQL Error: Error in Forage query '%s': %s --- zone/forage.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/zone/forage.cpp b/zone/forage.cpp index db348cf8c..3fe61f9d1 100644 --- a/zone/forage.cpp +++ b/zone/forage.cpp @@ -59,7 +59,6 @@ uint32 ZoneDatabase::GetZoneForage(uint32 ZoneID, uint8 skill) { "LIMIT %i", ZoneID, skill, FORAGE_ITEM_LIMIT); auto results = QueryDatabase(query); if (!results.Success()) { - Log.Out(Logs::General, Logs::Error, "Error in Forage query '%s': %s", query.c_str(), results.ErrorMessage().c_str()); return 0; }