When doing something, set ready time to 0 instead of 1
authorWuzzy <almikes@aol.com>
Sun, 01 May 2016 01:18:58 +0200
changeset 11919 e0476802c8b5
parent 11918 9da78300c5d0
child 11920 d7d7f3a07db9
When doing something, set ready time to 0 instead of 1
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