From 5bf3d40570ed8b445b3d39a40849a7128ca41276 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Mon, 19 Jan 2015 05:25:06 -0600 Subject: [PATCH] Remove Duplicative MySQL Error: Error in AdventureManager:::MoveCorpsesToGraveyard: %s (%s) --- world/adventure.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/world/adventure.cpp b/world/adventure.cpp index 6c08204a7..b2554c1f2 100644 --- a/world/adventure.cpp +++ b/world/adventure.cpp @@ -386,7 +386,6 @@ void Adventure::MoveCorpsesToGraveyard() std::string query = StringFormat("SELECT id, charid FROM character_corpses WHERE instanceid=%d", GetInstanceID()); auto results = database.QueryDatabase(query); if(!results.Success()) - Log.Out(Logs::General, Logs::Error, "Error in AdventureManager:::MoveCorpsesToGraveyard: %s (%s)", query.c_str(), results.ErrorMessage().c_str()); for(auto row = results.begin(); row != results.end(); ++row) { dbid_list.push_back(atoi(row[0]));