diff options
| author | Adam Bird <Archez@users.noreply.github.com> | 2023-04-07 11:24:35 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-07 11:24:35 -0400 |
| commit | 693f778b603a2d2cf4e4dce9454dfef313c49c7b (patch) | |
| tree | 742c1c0ba4b5f1bf02286638bfd6bba15c7352ba | |
| parent | b10e489cc6d8a03a76f5f120c500d36716b2320f (diff) | |
fix jabu mq clear condition for boss entrance rando (#2671)
| -rw-r--r-- | soh/soh/Enhancements/randomizer/3drando/location_access/locacc_jabujabus_belly.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/soh/soh/Enhancements/randomizer/3drando/location_access/locacc_jabujabus_belly.cpp b/soh/soh/Enhancements/randomizer/3drando/location_access/locacc_jabujabus_belly.cpp index 5cb561c7e..28b4e9c49 100644 --- a/soh/soh/Enhancements/randomizer/3drando/location_access/locacc_jabujabus_belly.cpp +++ b/soh/soh/Enhancements/randomizer/3drando/location_access/locacc_jabujabus_belly.cpp @@ -215,8 +215,7 @@ void AreaTable_Init_JabuJabusBelly() { areaTable[JABU_JABUS_BELLY_MQ_BOSS_AREA] = Area("Jabu Jabus Belly MQ Boss Area", "Jabu Jabus Belly", JABU_JABUS_BELLY, NO_DAY_NIGHT_CYCLE, { //Events - EventAccess(&FairyPot, {[]{return true;}}), - EventAccess(&JabuJabusBellyClear, {[]{return true;}}), + EventAccess(&FairyPot, {[]{return true;}}), }, { //Locations LocationAccess(JABU_JABUS_BELLY_MQ_COW, {[]{return CanPlay(EponasSong);}}), |
