# HG changeset patch
# User Wuzzy <Wuzzy2@mail.ru>
# Date 1535998614 -7200
# Node ID 885404cdf07a1faa039e90c46605f032139949f5
# Parent  f1c66a34f2feff08b86cb7edf76b08484d20798b
Add missing nil check in AfterAttack (oops!)

diff -r f1c66a34f2fe -r 885404cdf07a hedgewars/uGearsHedgehog.pas
--- a/hedgewars/uGearsHedgehog.pas	Mon Sep 03 20:01:50 2018 +0200
+++ b/hedgewars/uGearsHedgehog.pas	Mon Sep 03 20:16:54 2018 +0200
@@ -638,7 +638,7 @@
                 begin
                 if TagTurnTimeLeft = 0 then
                     TagTurnTimeLeft:= TurnTimeLeft;
-                if (HHGear^.State and gstHHDriven) <> 0 then
+                if (HHGear <> nil) and ((HHGear^.State and gstHHDriven) <> 0) then
                     begin
                     if (CurAmmoGear <> nil) and (CurAmmoGear^.State and gstSubmersible <> 0) and CheckCoordInWater(hwRound(CurAmmoGear^.X), hwRound(CurAmmoGear^.Y)) then
                          TurnTimeLeft:=(Ammoz[a].TimeAfterTurn * cGetAwayTime) div 25