diff -r f552c7b439fa -r af0e68ca273e hedgewars/hwengine.pas --- a/hedgewars/hwengine.pas Thu Aug 26 14:46:30 2010 +0100 +++ b/hedgewars/hwengine.pas Thu Aug 26 16:02:09 2010 +0200 @@ -85,7 +85,7 @@ ProcessKbd; if not isPaused then begin - DoGameTick(Lag); + if ReadyTimeLeft = 0 then DoGameTick(Lag); ProcessVisualGears(Lag); end; end; @@ -93,7 +93,7 @@ DrawWorld(Lag); if not isPaused then begin - DoGameTick(Lag); + if ReadyTimeLeft = 0 then DoGameTick(Lag); ProcessVisualGears(Lag); end; end;