Browse Source

Updated ScriptExplore

Changed send2game function to match send2player, Also changed a few
comments.
david 5 years ago
parent
commit
45ba53e116
1 changed files with 5 additions and 3 deletions
  1. 5 3
      flexible.py

+ 5 - 3
flexible.py

@@ -1014,6 +1014,8 @@ class ScriptExplore(object):
 
         WARNINGS:
          We assume the player has a Holo-Scanner!
+         We assume the player has lots o turns, or unlimited turns!
+         We assume the player is aware we run infinitly until we can't find new sectors to move to!
     """
     def __init__(self, game):
         self.game = game
@@ -1024,9 +1026,9 @@ class ScriptExplore(object):
         self.nl = "\n\r"
         
         # Our Stuff, Not our pants!
-        self.dense = []         # We did a density, store that
+        self.dense = []         # We did a density, store that info.
         self.didScan = False    # Track if we did a scan already... prevents us calling a scan multiple times.
-        self.clear = []         # Warps that we know are clear
+        self.clear = []         # Warps that we know are clear.
         self.highsector = 0     # Selected Sector to move to next!
         self.highwarp = 0       # Selected Sector's Warp Count!
 
@@ -1065,7 +1067,7 @@ class ScriptExplore(object):
         self.deactivate()
     
     def send2game(self, txt):
-        self.queue_player.put("{0}".format(txt))
+        self.queue_player.put(txt)
 
     def send2player(self, txt):
         self.queue_game.put(