From d693721f979f6045ff3dccec69b6ddd5d5f03e62 Mon Sep 17 00:00:00 2001 From: "U-Fish-PC\\Daniel" Date: Wed, 21 May 2014 08:48:30 -0400 Subject: Use constants for the starter mons --- scripts/pokemontower2.asm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/pokemontower2.asm') diff --git a/scripts/pokemontower2.asm b/scripts/pokemontower2.asm index dbbc8e63..4554413a 100755 --- a/scripts/pokemontower2.asm +++ b/scripts/pokemontower2.asm @@ -137,12 +137,12 @@ PokemonTower2Text1: ; 605df (18:45df) ; select which team to use during the encounter ld a, [W_RIVALSTARTER] - cp SQUIRTLE + cp STARTER2 jr nz, .NotSquirtle ; 0x6060f ld a, $4 jr .done .NotSquirtle ; 0x60615 - cp BULBASAUR + cp STARTER3 jr nz, .Charmander ; 0x60617 ld a, $5 jr .done -- cgit v1.3.1-sl0p