diff options
author | U-Fish-PC\Daniel <corrnondacqb@yahoo.com> | 2014-05-21 08:48:30 -0400 |
---|---|---|
committer | U-Fish-PC\Daniel <corrnondacqb@yahoo.com> | 2014-05-21 09:54:33 -0400 |
commit | d693721f979f6045ff3dccec69b6ddd5d5f03e62 (patch) | |
tree | 741e3ccda37dee3d53bd54da62379be6fdbee53e /scripts/ceruleancity.asm | |
parent | 02e6e3765eb81beb2c8a518f37fdd93f6e1da170 (diff) |
Use constants for the starter mons
Diffstat (limited to 'scripts/ceruleancity.asm')
-rwxr-xr-x | scripts/ceruleancity.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/ceruleancity.asm b/scripts/ceruleancity.asm index 86e353b1..61157bbb 100755 --- a/scripts/ceruleancity.asm +++ b/scripts/ceruleancity.asm @@ -141,12 +141,12 @@ CeruleanCityScript1: ; 19567 (6:5567) ; select which team to use during the encounter ld a, [W_RIVALSTARTER] - cp SQUIRTLE + cp STARTER2 jr nz, .NotSquirtle ; 0x19592 $4 ld a, $7 jr .done .NotSquirtle - cp BULBASAUR + cp STARTER3 jr nz, .Charmander ; 0x1959a $4 ld a, $8 jr .done |