fix problem with pas2c build. please don't use "and not xyz", use "and (not xyz)"
--- 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);