|
@@ -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:
|