mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-02-07 02:40:30 -05:00
fix lab dive check with eye drops (#2119)
This commit is contained in:
parent
c1e0db336d
commit
875b9aaff8
@ -251,7 +251,9 @@ void EnMk_Wait(EnMk* this, PlayState* play) {
|
||||
player->actor.textId = this->actor.textId;
|
||||
this->actionFunc = func_80AACA40;
|
||||
} else {
|
||||
if (INV_CONTENT(ITEM_ODD_MUSHROOM) == ITEM_EYEDROPS) {
|
||||
// Skip eye drop text on rando if Link went in the water, so you can still receive the dive check
|
||||
if (INV_CONTENT(ITEM_ODD_MUSHROOM) == ITEM_EYEDROPS &&
|
||||
(!gSaveContext.n64ddFlag || this->swimFlag == 0)) {
|
||||
player->actor.textId = 0x4032;
|
||||
this->actionFunc = func_80AACA40;
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user