# HG changeset patch
# User unc0rr
# Date 1200866847 0
# Node ID 29609363c36c00f69632564e9345d4c976cfcd3e
# Parent  8bf8c0ac8d94628c64e2d1986f368c76892aef59
More verbose awareness message

diff -r 8bf8c0ac8d94 -r 29609363c36c hedgewars/uAIActions.pas
--- a/hedgewars/uAIActions.pas	Sun Jan 20 21:53:22 2008 +0000
+++ b/hedgewars/uAIActions.pas	Sun Jan 20 22:07:27 2008 +0000
@@ -93,7 +93,8 @@
 else begin
    WriteLnToConsole('AI action: '+SpecActionIdToStr[Action.Action]);
    if (Action.Action = aia_WaitXL) or (Action.Action = aia_WaitXR) then
-      WriteLnToConsole('AI action Wait X = '+inttostr(Action.Param)+', current X = '+inttostr(hwRound(Me^.X)));
+      WriteLnToConsole('AI action Wait X = '+inttostr(Action.Param)+', current X = '+inttostr(hwRound(Me^.X)))
+   else if (Action.Action = aia_AwareExpl) then WriteLnToConsole('Aware X = ' + inttostr(Action.X) + ', Y = ' + inttostr(Action.Y));
    end
 end;
 {$ENDIF}