Browse Source

This fixes the Galaxy Explorer script.

"Do you want to engage the TransWarp drive?" No.
Steve Thielemann 5 years ago
parent
commit
06eda36daa
1 changed files with 3 additions and 2 deletions
  1. 3 2
      flexible.py

+ 3 - 2
flexible.py

@@ -1111,9 +1111,10 @@ class ScriptExplore(object):
             log.debug("dense is {0} sectors big".format(len(self.dense)))
             self.state += 1
             self.send2game("SH")
-        elif self.state == 12:
-            if prompt.startswith('Do you want to engage the TransWarp drive?'):
+        elif self.state == 10:
+            if prompt.startswith('Do you want to engage the TransWarp drive? '):
                 self.send2game("N")
+        elif self.state == 12:
             # Looking for "Engage the Autopilot?"
             if prompt.startswith('Engage the Autopilot? (Y/N/Single step/Express) [Y]'):
                 self.send2game("S")