diff options
| author | Daniel Harding <33dannye@gmail.com> | 2018-07-02 14:55:09 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-02 14:55:09 -0500 |
| commit | c8599831992c91e521cf1d467ccae3d9498e42ef (patch) | |
| tree | 9aab5255e6e78666eec624f1311aa6b17559b022 /data/wildPokemon/route23.asm | |
| parent | Merge pull request #184 from Pokeglitch/intro-updates (diff) | |
| parent | Fixed some inconsistencies in the usage of the if-def directive. (diff) | |
| download | pokeyellow-c8599831992c91e521cf1d467ccae3d9498e42ef.tar.gz pokeyellow-c8599831992c91e521cf1d467ccae3d9498e42ef.tar.xz pokeyellow-c8599831992c91e521cf1d467ccae3d9498e42ef.zip | |
Merge pull request #185 from UrsSchmidt/master
Fixed some inconsistencies in the usage of the if-def directive.
Diffstat (limited to 'data/wildPokemon/route23.asm')
| -rwxr-xr-x | data/wildPokemon/route23.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/wildPokemon/route23.asm b/data/wildPokemon/route23.asm index a96a0d3c..a057d24d 100755 --- a/data/wildPokemon/route23.asm +++ b/data/wildPokemon/route23.asm @@ -3,7 +3,7 @@ Route23Mons: IF DEF(_RED) db 26,EKANS ENDC - IF !DEF(_RED) + IF DEF(_BLUE) db 26,SANDSHREW ENDC db 33,DITTO @@ -14,7 +14,7 @@ Route23Mons: IF DEF(_RED) db 41,ARBOK ENDC - IF !DEF(_RED) + IF DEF(_BLUE) db 41,SANDSLASH ENDC db 43,DITTO |
