Forráskód Böngészése

Terror handles already in sector and Space Debris.

Steve Thielemann 5 éve
szülő
commit
76525c90a3
1 módosított fájl, 8 hozzáadás és 1 törlés
  1. 8 1
      flexible.py

+ 8 - 1
flexible.py

@@ -1821,6 +1821,8 @@ class ScriptTerror(object):
         elif self.state == 2:
             if prompt.startswith('Engage the Autopilot? (Y/N/Single step/Express) [Y]'):
                 self.queue_player.put("E")
+            elif prompt.startswith('Stop in this sector (Y,N,E,I,R,S,D,P,?) (?=Help) [N] ?'):
+                self.queue_player.put("N")
             elif re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt): 
                 # We should be where we wanted to.
                 ports = ScriptPort(self.game)
@@ -1834,7 +1836,12 @@ class ScriptTerror(object):
         if self.state == 1:
             if line.startswith('The shortest path ('):
                 self.state = 2
-
+            elif line.startswith("You are already in that sector!"):
+                # Whoops.
+                ports = ScriptPort(self.game)
+                d = ports.whenDone()
+                d.addCallback(self.journey_on)
+                d.addErrback(self.journey_on)
 
 
 class ProxyMenu(object):