Change RSK_SHUFFLE instance in mixed pool code to RSK_MIX. (#4276)

This commit is contained in:
Malkierian 2024-08-04 15:32:11 -07:00 committed by GitHub
parent 03e3258792
commit c6b05b2087
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1392,16 +1392,16 @@ int EntranceShuffler::ShuffleAllEntrances() {
poolsToMix.insert(EntranceType::BossReverse);
}
}
if (ctx->GetOption(RSK_SHUFFLE_OVERWORLD_ENTRANCES)) {
if (ctx->GetOption(RSK_MIX_OVERWORLD_ENTRANCES)) {
poolsToMix.insert(EntranceType::Overworld);
}
if (ctx->GetOption(RSK_SHUFFLE_INTERIOR_ENTRANCES)) {
if (ctx->GetOption(RSK_MIX_INTERIOR_ENTRANCES)) {
poolsToMix.insert(EntranceType::Interior);
if (ctx->GetOption(RSK_DECOUPLED_ENTRANCES)) {
poolsToMix.insert(EntranceType::InteriorReverse);
}
}
if (ctx->GetOption(RSK_SHUFFLE_GROTTO_ENTRANCES)) {
if (ctx->GetOption(RSK_MIX_GROTTO_ENTRANCES)) {
poolsToMix.insert(EntranceType::GrottoGrave);
if (ctx->GetOption(RSK_DECOUPLED_ENTRANCES)) {
poolsToMix.insert(EntranceType::GrottoGraveReverse);