# HG changeset patch # User Wuzzy # Date 1491524772 -7200 # Node ID c6984784c9fb396bb4be95583a11d25a1daedc2a # Parent 7df59356471e5813aa88edda565fadb2d574f0b9 Harden the countdown sound check diff -r 7df59356471e -r c6984784c9fb hedgewars/uGears.pas --- a/hedgewars/uGears.pas Fri Apr 07 01:50:49 2017 +0200 +++ b/hedgewars/uGears.pas Fri Apr 07 02:26:12 2017 +0200 @@ -450,7 +450,8 @@ begin if (cHedgehogTurnTime >= 10000) and (CurrentHedgehog^.Gear <> nil) - and ((CurrentHedgehog^.Gear^.State and gstAttacked) = 0) then + and ((CurrentHedgehog^.Gear^.State and gstAttacked) = 0) + and (not isGetAwayTime) then if TurnTimeLeft = 5000 then PlaySoundV(sndHurry, CurrentTeam^.voicepack) else if TurnTimeLeft = 4000 then