diff -r 9da78300c5d0 -r e0476802c8b5 hedgewars/uCommandHandlers.pas --- a/hedgewars/uCommandHandlers.pas Sun May 01 01:04:45 2016 +0200 +++ b/hedgewars/uCommandHandlers.pas Sun May 01 01:18:58 2016 +0200 @@ -37,9 +37,9 @@ procedure chGenCmd(var s: shortstring); begin case s[1] of - 'R': if ReadyTimeLeft > 1 then + 'R': if ReadyTimeLeft > 0 then begin - ReadyTimeLeft:= 1; + ReadyTimeLeft:= 0; if not isExternalSource then SendIPC('c'+s); end