From a128c7409052299b44d12c0257b2f6506194b917 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Mon, 19 Jan 2015 05:25:55 -0600 Subject: [PATCH] Remove Duplicative MySQL Error: GetInventory query '%s' %s --- common/shareddb.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/common/shareddb.cpp b/common/shareddb.cpp index cb2ca2d2b..da95cabef 100644 --- a/common/shareddb.cpp +++ b/common/shareddb.cpp @@ -609,7 +609,6 @@ bool SharedDatabase::GetInventory(uint32 account_id, char* name, Inventory* inv) name, account_id); auto results = QueryDatabase(query); if (!results.Success()){ - Log.Out(Logs::General, Logs::Error, "GetInventory query '%s' %s", query.c_str(), results.ErrorMessage().c_str()); Log.Out(Logs::General, Logs::Error, "If you got an error related to the 'instnodrop' field, run the following SQL Queries:\nalter table inventory add instnodrop tinyint(1) unsigned default 0 not null;\n"); return false; }