mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-16 10:23:34 +12:00
Fix Oak's Lab pikavee starterballs not disappearing
This was actually really really really easy to fix and I have no idea how it never got fixed This finishes KEP 1.3.
This commit is contained in:
parent
6292c39217
commit
347ee31852
|
@ -365,6 +365,8 @@ OaksLabScript9: ; This is where Blue picks up the ball and removes the sprite.
|
|||
cp $7
|
||||
jr nz, .rivalDidNotChoseBall4
|
||||
ld a, HS_STARTER_BALL_4
|
||||
ld [wMissableObjectIndex], a
|
||||
predef HideObject
|
||||
ld a, HS_DAMIEN ; This makes the starter gifts show up if you and your rival picked Pikachu and Eevee. It used to be coded differently but for some reason they still showed up if you picked Charmander or Squirtle, so I had to change it.
|
||||
ld [wMissableObjectIndex], a
|
||||
predef ShowObject
|
||||
|
@ -374,6 +376,8 @@ OaksLabScript9: ; This is where Blue picks up the ball and removes the sprite.
|
|||
jr .hideBallAndContinue
|
||||
.rivalDidNotChoseBall4
|
||||
ld a, HS_STARTER_BALL_5
|
||||
ld [wMissableObjectIndex], a
|
||||
predef HideObject
|
||||
ld a, HS_DAMIEN
|
||||
ld [wMissableObjectIndex], a
|
||||
predef ShowObject
|
||||
|
|
Loading…
Reference in a new issue