Merge pull request #1399 from aMannus/rando-bombchu-drops

Rando: Add Bombchu Drops
This commit is contained in:
briaguya
2022-09-03 15:03:30 -04:00
committed by GitHub
5 changed files with 33 additions and 3 deletions
+2 -1
View File
@@ -1507,7 +1507,8 @@ s16 func_8001F404(s16 dropId) {
}
}
if (CVar_GetS32("gBombchuDrops", 0) &&
if ((CVar_GetS32("gBombchuDrops", 0) ||
(gSaveContext.n64ddFlag && Randomizer_GetSettingValue(RSK_ENABLE_BOMBCHU_DROPS) == 1)) &&
(dropId == ITEM00_BOMBS_A || dropId == ITEM00_BOMBS_B || dropId == ITEM00_BOMBS_SPECIAL)) {
dropId = EnItem00_ConvertBombDropToBombchu(dropId);
}