mirror of https://github.com/pret/pokecrystal.git
fix a TextScript/MainText bug where '@' on a newline had an extra comma/param to db
This commit is contained in:
parent
f305b27025
commit
66b65c854b
|
@ -2228,7 +2228,7 @@ class MainText(TextCommand):
|
||||||
output += "@\"\n"
|
output += "@\"\n"
|
||||||
new_line = True
|
new_line = True
|
||||||
elif not in_quotes:
|
elif not in_quotes:
|
||||||
if not was_comma:
|
if not was_comma and not new_line:
|
||||||
output += ", "
|
output += ", "
|
||||||
output += "\"@\"\n"
|
output += "\"@\"\n"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue