# HG changeset patch
# User Wuzzy <almikes@aol.com>
# Date 1462058338 -7200
# Node ID e0476802c8b5b4934ac2e55357b73fb35b735d91
# Parent  9da78300c5d02fcba508ac3a0b74b37c70dc43b9
When doing something, set ready time to 0 instead of 1

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