From f6017ddbfd7e14ea39b81ce3393de9117e7310d9 Mon Sep 17 00:00:00 2001 From: colawsol <117095764+colawsol@users.noreply.github.com> Date: Thu, 7 Dec 2023 01:34:37 +0000 Subject: Correct StarterDex function comment (#440) --- engine/events/starter_dex.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/events/starter_dex.asm b/engine/events/starter_dex.asm index 7cfe9af2..9640a40e 100644 --- a/engine/events/starter_dex.asm +++ b/engine/events/starter_dex.asm @@ -1,4 +1,4 @@ -; this function temporarily makes the starters (and Ivysaur) seen +; this function temporarily makes the starters (and Ivysaur) owned ; so that the full Pokedex information gets displayed in Oak's lab StarterDex: ld a, 1 << (DEX_BULBASAUR - 1) | 1 << (DEX_IVYSAUR - 1) | 1 << (DEX_CHARMANDER - 1) | 1 << (DEX_SQUIRTLE - 1) -- cgit v1.3.1-sl0p