mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
restrict what shows up in script_parse_table
This commit is contained in:
parent
bd2a23379e
commit
f70c5cf74b
@ -4999,7 +4999,7 @@ class PeopleEvent(Command):
|
|||||||
self.force = force
|
self.force = force
|
||||||
self.params = {}
|
self.params = {}
|
||||||
#PeopleEvent should probably not be in the global script_parse_table
|
#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()
|
self.parse()
|
||||||
def parse(self):
|
def parse(self):
|
||||||
address = self.address
|
address = self.address
|
||||||
@ -5311,7 +5311,7 @@ class Signpost:
|
|||||||
self.last_address = self.address + self.size
|
self.last_address = self.address + self.size
|
||||||
self.y, self.x, self.func = None, None, None
|
self.y, self.x, self.func = None, None, None
|
||||||
#Signpost should probably not be in the globals
|
#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.remotes = []
|
||||||
self.params = []
|
self.params = []
|
||||||
self.parse()
|
self.parse()
|
||||||
|
Loading…
Reference in New Issue
Block a user