diff options
| author | colawsol <117095764+colawsol@users.noreply.github.com> | 2023-12-07 01:34:37 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-06 19:34:37 -0600 |
| commit | f6017ddbfd7e14ea39b81ce3393de9117e7310d9 (patch) | |
| tree | ca4d7e54bcf1311704921d6695532c6bfb8b6e69 | |
| parent | Convert a couple ds 2 to dw (diff) | |
| download | pokeyellow-f6017ddbfd7e14ea39b81ce3393de9117e7310d9.tar.gz pokeyellow-f6017ddbfd7e14ea39b81ce3393de9117e7310d9.tar.xz pokeyellow-f6017ddbfd7e14ea39b81ce3393de9117e7310d9.zip | |
Correct StarterDex function comment (#440)
| -rw-r--r-- | engine/events/starter_dex.asm | 2 |
1 files changed, 1 insertions, 1 deletions
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) |
