mirror of https://github.com/pret/pokecrystal.git
"┘" + 1 == " "
Using X+1 makes sense when X is the last control character in a contiguous group, but "┘" is not, so we can use the first non-control character
This commit is contained in:
parent
9ed402c4a2
commit
06eb89d903
|
@ -70,5 +70,5 @@ CorrectNickErrors::
|
|||
db "<ROUTE>", "<GREEN>" + 1
|
||||
db "<ENEMY>", "<ENEMY>" + 1
|
||||
db "<MOM>", "<TM>" + 1
|
||||
db "<ROCKET>", "┘" + 1
|
||||
db "<ROCKET>", " "
|
||||
db -1 ; end
|
||||
|
|
Loading…
Reference in New Issue