# HG changeset patch
# User Wuzzy <Wuzzy2@mail.ru>
# Date 1562617760 -7200
# Node ID bf11546c19209acd0d693a413a7171a2f36f6688
# Parent  ceb289e8a5829fb9dbdb8d84c23b7f6c09e4cc10
Remove excessive console output of gtAirAttack

diff -r ceb289e8a582 -r bf11546c1920 hedgewars/uGearsHandlersMess.pas
--- a/hedgewars/uGearsHandlersMess.pas	Mon Jul 08 21:44:26 2019 +0200
+++ b/hedgewars/uGearsHandlersMess.pas	Mon Jul 08 22:29:20 2019 +0200
@@ -149,7 +149,7 @@
 implementation
 uses uConsts, uVariables, uVisualGearsList, uRandom, uCollisions, uGearsList, uUtils, uSound
     , SDLh, uScript, uGearsHedgehog, uGearsUtils, uIO, uCaptions, uLandGraphics
-    , uConsole, uGearsHandlers, uTextures, uRenderUtils, uAmmos, uTeams, uLandTexture
+    , uGearsHandlers, uTextures, uRenderUtils, uAmmos, uTeams, uLandTexture
     , uStore, uAI, uStats, uLocale;
 
 procedure doStepPerPixel(Gear: PGear; step: TGearStepProcedure; onlyCheckIfChanged: boolean);
@@ -3069,7 +3069,6 @@
 begin
     AllInactive := false;
     Gear^.X := Gear^.X + cAirPlaneSpeed * Gear^.Tag;
-    WriteLnToConsole('X='+IntToStr(hwRound(Gear^.X))+' dX='+cstr(gear^.dx)+' PLUS='+cstr(Gear^.dx+cAirPlaneSpeed));
     if (Gear^.Health > 0) and (not (Gear^.X < Gear^.dX)) and (Gear^.X < Gear^.dX + cAirPlaneSpeed) then
         begin
         dec(Gear^.Health);