shithub: pokecrystal

Download patch

ref: 06eb89d903d2b73c6aeb364300c9f2f85188fdc5
parent: 9ed402c4a2a77f4cdaf7d913bad787c9ac088493
author: Rangi <remy.oukaour+rangi42@gmail.com>
date: Mon Jun 25 10:09:56 EDT 2018

"┘" + 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

--- a/engine/pokemon/correct_nick_errors.asm
+++ b/engine/pokemon/correct_nick_errors.asm
@@ -70,5 +70,5 @@
 	db "<ROUTE>",  "<GREEN>" + 1
 	db "<ENEMY>",  "<ENEMY>" + 1
 	db "<MOM>",    "<TM>"    + 1
-	db "<ROCKET>", "┘"       + 1
+	db "<ROCKET>", " "
 	db -1 ; end