From 0bb8f7e43b2422c62732fcf95b75d0d87c552314 Mon Sep 17 00:00:00 2001 From: Ali El Gariani Date: Tue, 22 Apr 2008 18:56:23 +0000 Subject: [PATCH] Silence a error flood "ANALYSIS 3 >= 3" (e.g. on HttT1 when fights start) I assume it's just debug output since the message was added recently, with no real code change in this file (in 2008-03-03T05:40:29Z!davewx7@gmail.com formula AI merge). Sirp: maybe confirm that this output was normal. --- src/ai_attack.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ai_attack.cpp b/src/ai_attack.cpp index 5cddedc429a..95bd2c97c15 100644 --- a/src/ai_attack.cpp +++ b/src/ai_attack.cpp @@ -46,7 +46,7 @@ void ai::do_attack_analysis( raise_user_interact(); if(cur_analysis.movements.size() >= size_t(attack_depth())) { - std::cerr << "ANALYSIS " << cur_analysis.movements.size() << " >= " << attack_depth() << "\n"; + //std::cerr << "ANALYSIS " << cur_analysis.movements.size() << " >= " << attack_depth() << "\n"; return; }