mirror of
https://github.com/pret/pokemon-reverse-engineering-tools.git
synced 2026-09-08 02:05:12 -05:00
restrict what shows up in script_parse_table
original-commit-id: f70c5cf74bb02fd3cbc3713c4ea0e256ad26187f
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user