From 06eb89d903d2b73c6aeb364300c9f2f85188fdc5 Mon Sep 17 00:00:00 2001 From: Rangi Date: Mon, 25 Jun 2018 14:09:56 -0400 Subject: [PATCH] =?UTF-8?q?"=E2=94=98"=20+=201=20=3D=3D=20"=20"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- engine/pokemon/correct_nick_errors.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/pokemon/correct_nick_errors.asm b/engine/pokemon/correct_nick_errors.asm index 335540cfe..80e712f2e 100644 --- a/engine/pokemon/correct_nick_errors.asm +++ b/engine/pokemon/correct_nick_errors.asm @@ -70,5 +70,5 @@ CorrectNickErrors:: db "", "" + 1 db "", "" + 1 db "", "" + 1 - db "", "┘" + 1 + db "", " " db -1 ; end