From 94e63885fb4c8779ddcde79883f8d530d9312f39 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Tue, 20 Jan 2015 01:42:12 -0600 Subject: [PATCH] Remove Duplicative MySQL Error: Error in GetBlockedSpellsCount query ' --- zone/zonedb.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/zone/zonedb.cpp b/zone/zonedb.cpp index 710fcffb9..8425e6772 100644 --- a/zone/zonedb.cpp +++ b/zone/zonedb.cpp @@ -2657,7 +2657,6 @@ int32 ZoneDatabase::GetBlockedSpellsCount(uint32 zoneid) std::string query = StringFormat("SELECT count(*) FROM blocked_spells WHERE zoneid = %d", zoneid); auto results = QueryDatabase(query); if (!results.Success()) { - std::cerr << "Error in GetBlockedSpellsCount query '" << query << "' " << results.ErrorMessage() << std::endl; return -1; }