You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-09-08 08:13:02 -07:00
fix was_comma statement (gah)
This commit is contained in:
@@ -1852,10 +1852,13 @@ class MainText(TextCommand):
|
|||||||
if not was_comma:
|
if not was_comma:
|
||||||
output += ", "
|
output += ", "
|
||||||
output += "$%.2x\n" % (byte)
|
output += "$%.2x\n" % (byte)
|
||||||
was_comma = True
|
was_comma = False
|
||||||
new_line = True
|
new_line = True
|
||||||
elif byte == 0x50:
|
elif byte == 0x50:
|
||||||
assert not new_line, "can't have $50 or '@' as the first character on a newline"
|
assert not new_line, "can't have $50 or '@' as the first character on a newline"
|
||||||
|
|
||||||
|
if in_quotes:
|
||||||
|
output += "@\""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
# TODO
|
# TODO
|
||||||
|
Reference in New Issue
Block a user