From f39afc51c70f9f9baba81544d906b57aa67bc3d5 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Sat, 24 Jan 2015 22:29:23 -0600 Subject: [PATCH] Suppress Error message for GetRaidID (Unable to get raid id, char not found) because it will happen for any player who is not in a raid anyways which makes it pointless --- common/database.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/common/database.cpp b/common/database.cpp index b5ad4073c..7c145e86a 100644 --- a/common/database.cpp +++ b/common/database.cpp @@ -3397,7 +3397,6 @@ uint32 Database::GetRaidID(const char* name) auto row = results.begin(); if (row == results.end()) { - Log.Out(Logs::General, Logs::Error, "Unable to get raid id, char not found!"); return 0; }