Kaynağa Gözat

ColoScript changed to fix a bug with how many turns to do

david 5 yıl önce
ebeveyn
işleme
3b40c63b91
1 değiştirilmiş dosya ile 4 ekleme ve 2 silme
  1. 4 2
      flexible.py

+ 4 - 2
flexible.py

@@ -2574,7 +2574,7 @@ class ColoScript(object):
                 # Are we really getting this? Yup
                 #log.debug("Planet Number: {0} Sector: {1}".format(self.planet_number, self.planet_sector))
                 ask1 = PlayerInput(self.game)
-                d1 = ask1.prompt("How many times (0 is inf)", 3, name="rolls", digits=True)
+                d1 = ask1.prompt("How many times ", 3, name="rolls", digits=True)
                 d1.addCallback(self.loop_chosen)
             else:
                 self.deactivate()
@@ -2583,7 +2583,9 @@ class ColoScript(object):
         if choice.strip() == '':
             self.deactivate()
         else:
-            self.loops = int(choice)
+            self.loops = abs(int(choice))
+            if self.loops == 0:
+                self.loops = 1
             self.maxloops = self.loops
             self.state = 4
             self.send2game("1\r")