mirror of
https://github.com/pret/pokemon-reverse-engineering-tools.git
synced 2026-07-20 01:14:12 -05:00
temporary fix to prevent TextScript from appending @s
original-commit-id: d4508d9beda76be00c79296e88129a5dcfd908d2
This commit is contained in:
parent
e112ac9898
commit
e2cfea3598
|
|
@ -725,7 +725,9 @@ class TextScript:
|
|||
address = self.address
|
||||
start_address = address
|
||||
if label == None: label = self.label.name
|
||||
commands = self.commands
|
||||
#using deepcopy because otherwise additional @s get appended each time
|
||||
#like to the end of the text for TextScript(0x5cf3a)
|
||||
commands = deepcopy(self.commands)
|
||||
#apparently this isn't important anymore?
|
||||
needs_to_begin_with_0 = True
|
||||
#start with zero please
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user