소스 검색

ColoScript & Quest Update

Removed Q Quest so now you can not call it...

Fixed ColoScript so it handles single planets
david 5 년 전
부모
커밋
03c42bd5ae
1개의 변경된 파일5개의 추가작업 그리고 2개의 파일을 삭제
  1. 5 2
      flexible.py

+ 5 - 2
flexible.py

@@ -2683,6 +2683,9 @@ class ColoScript(object):
             elif prompt.startswith('Land on which planet <Q to abort> ?'):
                 self.state = 7
                 self.send2game("{0}\r".format(self.planet_number))
+            elif prompt.startswith('Planet command (?=help) [D] '):
+                self.state = 7
+                self.send2game("D")
         elif self.state == 7:
             if prompt.startswith('Engage the Autopilot? (Y/N/Single step/Express) [Y]'):
                 self.state = 6
@@ -3087,7 +3090,7 @@ class ProxyMenu(object):
             return
             # self.queue_game.put(pformat(self.portdata).replace("\n", "\n\r") + self.nl)
             # self.queue_game.put(pformat(self.warpdata).replace("\n", "\n\r") + self.nl)    
-        elif key == "Q":
+        """ elif key == "Q":
             self.queue_game.put(self.c + key + self.r + self.nl)
 
             # This is an example of chaining PlayerInput prompt calls.
@@ -3126,7 +3129,7 @@ class ProxyMenu(object):
             # This doesn't seem to be getting called.
             # d.addErrback(lambda ignore: self.welcome_back)
             d.addErrback(self.welcome_back)
-            return
+            return """
 
         elif key == "X":
             self.queue_game.put(self.c + key + self.r + self.nl)