浏览代码

ColoScript Hides I

Since this is so we can see how many holds are avalible we can hide
this, also introduced a possible issue of not allowing the user to see
what is happening if a script doesn't allow it and then crashes.
david 5 年之前
父节点
当前提交
6a47d0afe6
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      flexible.py

+ 2 - 1
flexible.py

@@ -2540,6 +2540,7 @@ class ColoScript(object):
     def deactivate(self, andExit=False):
         self.state = 0
         log.debug("ColoScript.deactivate()")
+        self.game.to_player = True
         assert(not self.save is None)
         self.observer.load(self.save)
         self.save = None
@@ -2590,7 +2591,6 @@ class ColoScript(object):
             self.state = 3
             self.game.to_player = False
             self.send2game("I") # A neutral command, that won't hose up sending Express Mode? (Yes)
-            self.game.to_player = True
             # In fact this should allow us to see how many holds are avalible/empty
             # Jump to state 3 = Move to Terra
 
@@ -2656,6 +2656,7 @@ class ColoScript(object):
                 self.queue_player.put("N")
             elif re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):             
                 self.state = 4
+                self.game.to_player = True
                 self.send2game("1\r")
                 # Move to sector 1, Terra
         elif self.state == 4: