|
@@ -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(
|