diff options
| author | dannye <33dannye@gmail.com> | 2024-09-29 10:50:46 -0500 |
|---|---|---|
| committer | dannye <33dannye@gmail.com> | 2024-09-29 10:50:46 -0500 |
| commit | 716f8608c13fbee20b8fb71118e0691344098591 (patch) | |
| tree | a69f3805e6e8e372a8fe9c064aa77d76efbed3a3 /engine/items | |
| parent | Identify more bit flags (#119) (diff) | |
| download | pokeyellow-716f8608c13fbee20b8fb71118e0691344098591.tar.gz pokeyellow-716f8608c13fbee20b8fb71118e0691344098591.tar.xz pokeyellow-716f8608c13fbee20b8fb71118e0691344098591.zip | |
Rename off-by-one wram labels
Diffstat (limited to 'engine/items')
| -rw-r--r-- | engine/items/item_effects.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/items/item_effects.asm b/engine/items/item_effects.asm index c39e223b..89a20113 100644 --- a/engine/items/item_effects.asm +++ b/engine/items/item_effects.asm @@ -562,7 +562,7 @@ ItemUseBall: .skipShowingPokedexData ld a, $1 - ld [wd49c], a + ld [wd49b], a ld a, $85 ld [wPikachuMood], a ld a, [wPartyCount] @@ -819,7 +819,7 @@ ItemUseEvoStone: ld hl, RefusingText call PrintText ld a, $4 - ld [wd49c], a + ld [wd49b], a ld a, $82 ld [wPikachuMood], a jr .canceledItemUse @@ -2124,7 +2124,7 @@ FishingInit: ld a, SFX_HEAL_AILMENT call PlaySound ld a, $2 - ld [wd49c], a + ld [wd49b], a ld a, $81 ld [wPikachuMood], a ld c, 80 @@ -2507,7 +2507,7 @@ ItemUseTMHM: jr nz, .notTeachingThunderboltOrThunderToPikachu .teachingThunderboltOrThunderToPlayerPikachu ld a, $5 - ld [wd49c], a + ld [wd49b], a ld a, $85 ld [wPikachuMood], a .notTeachingThunderboltOrThunderToPikachu |
