mirror of https://github.com/pret/pokecrystal.git
make sure the bytes don't run out with no ending byte in MainText
This commit is contained in:
parent
133bcb7049
commit
7d17027ffb
|
@ -1963,6 +1963,10 @@ class MainText(TextCommand):
|
||||||
new_line = False
|
new_line = False
|
||||||
was_comma = False
|
was_comma = False
|
||||||
|
|
||||||
|
# this shouldn't happen because of the rom_until calls in the parse method
|
||||||
|
if not end:
|
||||||
|
raise Exception, "ran out of bytes without the script ending?"
|
||||||
|
|
||||||
# last character may or may not be allowed to be a newline?
|
# last character may or may not be allowed to be a newline?
|
||||||
# Script.to_asm() has command.to_asm()+"\n"
|
# Script.to_asm() has command.to_asm()+"\n"
|
||||||
if output[-1] == "\n":
|
if output[-1] == "\n":
|
||||||
|
|
Loading…
Reference in New Issue