Bläddra i källkod

PlanetUp now handles mines in space

david 5 år sedan
förälder
incheckning
05272964d2
1 ändrade filer med 5 tillägg och 3 borttagningar
  1. 5 3
      flexible.py

+ 5 - 3
flexible.py

@@ -264,7 +264,7 @@ class CIMWarpReport(object):
         self.queue_player.put("^")  # Activate CIM
         self.state = 1
         # self.warpdata = {}
-        self.queue_game.put("Loading ... ")  # cycle eats last char.
+        self.queue_game.put("Loading  ")  # cycle eats last char.
         self.warpcycle = SpinningCursor() 
 
     def game_prompt(self, prompt):
@@ -396,7 +396,7 @@ class CIMPortReport(object):
         self.queue_player.put("^")  # Activate CIM
         self.state = 1
         # self.portdata = {}
-        self.queue_game.put("Loading ... ")  # cycle eats last char.
+        self.queue_game.put("Loading  ")  # cycle eats last char.
         self.portcycle = SpinningCursor()
 
     def game_prompt(self, prompt):
@@ -2143,7 +2143,7 @@ class PlanetUpScript(object):
                 self.queue_game.put("OH NOSE!" + self.nl)
                 self.deactivate()
                 return
-            elif prompt.startswith('Stop in this sector (Y,N,E,I,R,S,D,P,?) (?=Help) [N] ?'):
+            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"How many holds of .+ do you want to buy \[\d+\]\? ", prompt):
                 if prompt.startswith('How many holds of ' + self.fetch):
@@ -2172,6 +2172,8 @@ class PlanetUpScript(object):
             if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
                 # land
                 self.queue_player.put('L')
+            elif prompt.startswith('Stop in this sector (Y,N,E,I,R,S,D,P,?) (?=Help) [N] ? '):
+                self.queue_player.put("N")
             elif prompt.startswith('Land on which planet <Q to abort> ?'):
                 self.queue_player.put("{0}\r".format(self.planet_number))
             elif prompt.startswith('Stop in this sector (Y,N,E,I,R,S,D,P,?) (?=Help) [N] ?'):