summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan Bishop <kanzure@gmail.com>2012-04-15 18:26:06 -0500
committerBryan Bishop <kanzure@gmail.com>2012-04-15 18:26:06 -0500
commitf70c5cf74bb02fd3cbc3713c4ea0e256ad26187f (patch)
treeb81e64cbe9d3fde2a5f8cc0c2ad2db4688c96796
parentbd2a23379ee4b7a69d43609f033cdb581080c385 (diff)
restrict what shows up in script_parse_table
-rw-r--r--extras/crystal.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/extras/crystal.py b/extras/crystal.py
index d80fdff4e..f8fbe9290 100644
--- a/extras/crystal.py
+++ b/extras/crystal.py
@@ -4999,7 +4999,7 @@ class PeopleEvent(Command):
self.force = force
self.params = {}
#PeopleEvent should probably not be in the global script_parse_table
- script_parse_table[self.address : self.last_address] = self
+ #script_parse_table[self.address : self.last_address] = self
self.parse()
def parse(self):
address = self.address
@@ -5311,7 +5311,7 @@ class Signpost:
self.last_address = self.address + self.size
self.y, self.x, self.func = None, None, None
#Signpost should probably not be in the globals
- script_parse_table[self.address : self.last_address] = self
+ #script_parse_table[self.address : self.last_address] = self
self.remotes = []
self.params = []
self.parse()