From f760597684e2781cfb6092613938d55c75f756a0 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Fri, 16 Jan 2015 02:06:22 -0600 Subject: [PATCH] Removed preprocessor EQDEBUG in CheckWillAggro and converted log message --- zone/aggro.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/zone/aggro.cpp b/zone/aggro.cpp index 0fe174a65..437713062 100644 --- a/zone/aggro.cpp +++ b/zone/aggro.cpp @@ -342,11 +342,8 @@ bool Mob::CheckWillAggro(Mob *mob) { { //FatherNiwtit: make sure we can see them. last since it is very expensive if(CheckLosFN(mob)) { - - // Aggro - #if EQDEBUG>=6 - logger.LogDebug(EQEmuLogSys::General, "Check aggro for %s target %s.", GetName(), mob->GetName()); - #endif + logger.LogDebugType(EQEmuLogSys::Detail, EQEmuLogSys::Aggro, "Check aggro for %s target %s.", GetName(), mob->GetName()); + return( mod_will_aggro(mob, this) ); } }