From 7878755831c35fef0646ada2b8d480cdd909bcbf Mon Sep 17 00:00:00 2001 From: Akkadius Date: Mon, 19 Jan 2015 05:25:20 -0600 Subject: [PATCH] Remove Duplicative MySQL Error: Error in AdventureManager:::GetLeaderboardInfo: %s (%s) --- world/adventure_manager.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/world/adventure_manager.cpp b/world/adventure_manager.cpp index 1314a344b..c49cf17c4 100644 --- a/world/adventure_manager.cpp +++ b/world/adventure_manager.cpp @@ -1077,7 +1077,6 @@ void AdventureManager::LoadLeaderboardInfo() "AS adv_stats LEFT JOIN `character_data` AS ch ON adv_stats.player_id = ch.id;"; auto results = database.QueryDatabase(query); if(!results.Success()) { - Log.Out(Logs::General, Logs::Error, "Error in AdventureManager:::GetLeaderboardInfo: %s (%s)", query.c_str(), results.ErrorMessage().c_str()); return; }