From ac2b53c94b67c3f0ad1de565cb8b5105936ab805 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Mon, 19 Jan 2015 05:25:08 -0600 Subject: [PATCH] Remove Duplicative MySQL Error: Error while querying Spell ID %i spell_globals table query '%s': %s --- zone/spells.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/zone/spells.cpp b/zone/spells.cpp index c9d21201e..3e89e9e8e 100644 --- a/zone/spells.cpp +++ b/zone/spells.cpp @@ -4962,7 +4962,6 @@ bool Client::SpellGlobalCheck(uint16 spell_ID, uint32 char_ID) { "WHERE spellid = %i", spell_ID); auto results = database.QueryDatabase(query); if (!results.Success()) { - Log.Out(Logs::General, Logs::Error, "Error while querying Spell ID %i spell_globals table query '%s': %s", spell_ID, query.c_str(), results.ErrorMessage().c_str()); return false; // Query failed, so prevent spell from scribing just in case }