# HG changeset patch # User sheepluva # Date 1480248492 -3600 # Node ID e1bca1ebbad9129c7e84730777ef4c32e0ffccc8 # Parent 4dfc95eabee16f8ea58fe45d205b9ba0d5ea0ba4 fix problem with pas2c build. please don't use "and not xyz", use "and (not xyz)" diff -r 4dfc95eabee1 -r e1bca1ebbad9 hedgewars/uStats.pas --- a/hedgewars/uStats.pas Sun Nov 27 12:58:41 2016 +0100 +++ b/hedgewars/uStats.pas Sun Nov 27 13:08:12 2016 +0100 @@ -141,7 +141,7 @@ AddVoice(sndMissed, PreviousTeam^.voicepack) else if (AmmoUsedCount > 0) and (not isTurnSkipped) then begin end// nothing ? - else if isTurnSkipped and not PlacingHogs then + else if isTurnSkipped and (not PlacingHogs) then begin AddVoice(sndCoward, PreviousTeam^.voicepack); AddCaption(FormatA(GetEventString(eidTurnSkipped), s), cWhiteColor, capgrpMessage);