From 7a90d52e627feb6c71eebd034d700dd776063582 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Tue, 20 Jan 2015 01:41:34 -0600 Subject: [PATCH] Remove Duplicative MySQL Error: Error in SetGMSpeed query ' --- common/shareddb.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/common/shareddb.cpp b/common/shareddb.cpp index 53e6d2306..fb1f48345 100644 --- a/common/shareddb.cpp +++ b/common/shareddb.cpp @@ -73,7 +73,6 @@ bool SharedDatabase::SetGMSpeed(uint32 account_id, uint8 gmspeed) std::string query = StringFormat("UPDATE account SET gmspeed = %i WHERE id = %i", gmspeed, account_id); auto results = QueryDatabase(query); if (!results.Success()) { - std::cerr << "Error in SetGMSpeed query '" << query << "' " << results.ErrorMessage() << std::endl; return false; }