From fa5bd0286c5cbc4f94d7e5e6d57076dcb09093f8 Mon Sep 17 00:00:00 2001 From: johns <> Date: Fri, 8 Mar 2002 16:35:36 +0000 Subject: [PATCH] Debug message disabled. --- src/ai/ai_resource.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ai/ai_resource.cpp b/src/ai/ai_resource.cpp index 878deb204..6ee594b3f 100644 --- a/src/ai/ai_resource.cpp +++ b/src/ai/ai_resource.cpp @@ -1196,7 +1196,7 @@ local void AiCollectResources(void) switch( c ) { case GoldCost: if( AiMineGold(unit) ) { - DebugLevel0Fn("Assigned\n"); + DebugLevel3Fn("Assigned\n"); assigned[an[c]++][c]=unit; ++total; } @@ -1210,7 +1210,7 @@ local void AiCollectResources(void) break; case OilCost: if( AiHaulOil(unit) ) { - DebugLevel0Fn("Assigned\n"); + DebugLevel3Fn("Assigned\n"); assigned[an[c]++][c]=unit; ++total; }