From ebc0bf425b6429fd2cc9492acb9ac822a2ab4a1e Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Sun, 17 May 2020 09:41:43 -0400 Subject: [PATCH] Nullify ai_log statements unless someone comments this out --- code/modules/ai/_defines.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/ai/_defines.dm b/code/modules/ai/_defines.dm index 7b49f18ddb..8075c6d2ee 100644 --- a/code/modules/ai/_defines.dm +++ b/code/modules/ai/_defines.dm @@ -4,7 +4,8 @@ #define AI_NORMAL 2 // Default level. #define AI_SMART 3 // Will do more processing to be a little smarter, like not walking while confused if it could risk stepping randomly onto a bad tile. -#define ai_log(M,V) if(debug_ai) ai_log_output(M,V) +//#define ai_log(M,V) if(debug_ai) ai_log_output(M,V) +#define ai_log(M,V) // Logging level defines. #define AI_LOG_OFF 0 // Don't show anything.