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; }