diff options
author | luckytyphlosion <alan.rj.huang@gmail.com> | 2015-08-28 14:23:05 -0400 |
---|---|---|
committer | luckytyphlosion <alan.rj.huang@gmail.com> | 2015-08-28 14:23:05 -0400 |
commit | e1c747e8f5c8ec23346888fceebb5e1db183ea08 (patch) | |
tree | 1ef6605f943d59fafa32ac2f42237a498dbd5987 /engine/battle/common_text.asm | |
parent | 9c61b495da446c2216bcd8c56aaa55fffdbf3d61 (diff) |
Attempt to make pokeyellow buildable, part 8.
Diffstat (limited to 'engine/battle/common_text.asm')
-rw-r--r-- | engine/battle/common_text.asm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engine/battle/common_text.asm b/engine/battle/common_text.asm index e1fbedc2..5d427e97 100644 --- a/engine/battle/common_text.asm +++ b/engine/battle/common_text.asm @@ -35,9 +35,13 @@ PrintBeginningBattleText: ; f4000 (3d:4000) call DelayFrames ld hl, TrainerWantsToFightText .wildBattle + ld a, [W_BATTLETYPE] + and a + jr nz, .doNotDrawPokeballs push hl callab DrawAllPokeballs pop hl +.doNotDrawPokeballs call PrintText jr .done .pokemonTower |