mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-19 13:00:11 -07:00
fix song fairy shuffle locations
This commit is contained in:
parent
77b2e7534a
commit
6afd018b6d
2 changed files with 3 additions and 2 deletions
|
@ -1023,7 +1023,7 @@ void GenerateItemPool() {
|
||||||
|
|
||||||
// Shuffle Song Fairies
|
// Shuffle Song Fairies
|
||||||
if (ctx->GetOption(RSK_SHUFFLE_SONG_FAIRIES)) {
|
if (ctx->GetOption(RSK_SHUFFLE_SONG_FAIRIES)) {
|
||||||
for (auto rc : Rando::StaticData::GetBeanFairyLocations()) {
|
for (auto rc : Rando::StaticData::GetSongFairyLocations()) {
|
||||||
AddItemToMainPool(GetJunkItem());
|
AddItemToMainPool(GetJunkItem());
|
||||||
}
|
}
|
||||||
// 3 Shadow Temple
|
// 3 Shadow Temple
|
||||||
|
|
|
@ -476,7 +476,8 @@ void Settings::CreateOptionDescriptions() {
|
||||||
"Overworld - Only freestanding rupees & hearts that are outside of dungeons.\n"
|
"Overworld - Only freestanding rupees & hearts that are outside of dungeons.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"All Items - Shuffle all freestanding rupees & hearts.";
|
"All Items - Shuffle all freestanding rupees & hearts.";
|
||||||
mOptionDescriptions[RSK_SHUFFLE_FOUNTAIN_FAIRIES] = "Shuffle fairies in fountain locations.";
|
mOptionDescriptions[RSK_SHUFFLE_FOUNTAIN_FAIRIES] = "Shuffle fairies in fountain locations. "
|
||||||
|
"This includes the sets of fairies found in Ganon's Castle and the Desert Oasis.";
|
||||||
mOptionDescriptions[RSK_SHUFFLE_STONE_FAIRIES] = "Shuffle fairies from gossip stone locations.";
|
mOptionDescriptions[RSK_SHUFFLE_STONE_FAIRIES] = "Shuffle fairies from gossip stone locations.";
|
||||||
mOptionDescriptions[RSK_SHUFFLE_BEAN_FAIRIES] = "Shuffle fairies from magic bean locations.";
|
mOptionDescriptions[RSK_SHUFFLE_BEAN_FAIRIES] = "Shuffle fairies from magic bean locations.";
|
||||||
mOptionDescriptions[RSK_SHUFFLE_SONG_FAIRIES] =
|
mOptionDescriptions[RSK_SHUFFLE_SONG_FAIRIES] =
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue