mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-14 02:27:21 -07:00
Freestanding Shuffle fixes & extract to separate file (#4808)
* Freestanding fixes * Copy paste fail * Temporary vanilla items fix
This commit is contained in:
parent
700c1a808d
commit
23466e5a5e
10 changed files with 143 additions and 72 deletions
|
@ -1261,15 +1261,15 @@ void LoadSettings() {
|
|||
|
||||
if (IS_RANDO) {
|
||||
switch (OTRGlobals::Instance->gRandomizer->GetRandoSettingValue(RSK_SHUFFLE_FREESTANDING)) {
|
||||
case RO_FREESTANDING_ALL:
|
||||
case RO_SHUFFLE_FREESTANDING_ALL:
|
||||
showOverworldFreestanding = true;
|
||||
showDungeonFreestanding = true;
|
||||
break;
|
||||
case RO_FREESTANDING_OVERWORLD:
|
||||
case RO_SHUFFLE_FREESTANDING_OVERWORLD:
|
||||
showOverworldFreestanding = true;
|
||||
showDungeonFreestanding = false;
|
||||
break;
|
||||
case RO_FREESTANDING_DUNGEONS:
|
||||
case RO_SHUFFLE_FREESTANDING_DUNGEONS:
|
||||
showOverworldFreestanding = false;
|
||||
showDungeonFreestanding = true;
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue