Nullify ai_log statements unless someone comments this out

This commit is contained in:
Aronai Sieyes
2020-05-17 09:41:43 -04:00
parent 0bad4363b8
commit ebc0bf425b

View File

@@ -4,7 +4,8 @@
#define AI_NORMAL 2 // Default level. #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_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. // Logging level defines.
#define AI_LOG_OFF 0 // Don't show anything. #define AI_LOG_OFF 0 // Don't show anything.