Bläddra i källkod

Str is not iterable

ScriptExplore Bug Fix
david 5 år sedan
förälder
incheckning
8b7d24c998
1 ändrade filer med 3 tillägg och 1 borttagningar
  1. 3 1
      flexible.py

+ 3 - 1
flexible.py

@@ -1014,7 +1014,7 @@ class ScriptExplore(object):
         ask = PlayerInput(self.game)
         
         def settimes(*_):
-            times = ask.keep['times'].strip()
+            times = int(ask.keep['times'].strip())
             log.msg("settimes got '{0}'".format(times))
             if times == None:
                 self.deactivate()
@@ -1066,6 +1066,8 @@ class ScriptExplore(object):
     
     def game_line(self, line: str):
         log.msg("{0} | {1}".format(self.state, line))
+        if "Mine Control" in line:
+            self.deactivate()
         if self.state == 1:
             # Density Scan, (Assume we have the Holo-Scanner)
             if not self.didScan: