mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-01-13 06:58:03 -05:00
Fix ice traps
This commit is contained in:
parent
ed3cddbeaf
commit
5de662a326
@ -4029,8 +4029,8 @@ void DrawRandoEditor(bool& open) {
|
|||||||
// Shuffle Frog Song Rupees
|
// Shuffle Frog Song Rupees
|
||||||
SohImGui::EnhancementCheckbox(Settings::ShuffleFrogSongRupees.GetName().c_str(), "gRandomizeShuffleFrogSongRupees");
|
SohImGui::EnhancementCheckbox(Settings::ShuffleFrogSongRupees.GetName().c_str(), "gRandomizeShuffleFrogSongRupees");
|
||||||
InsertHelpHoverText(
|
InsertHelpHoverText(
|
||||||
"Shuffles 5 Purple Rupees into to the item pool, and allows you\n"
|
"Shuffles 5 Purple Rupees into to the item pool, and allows\n"
|
||||||
"to earn items by playing songs at the Frog Choir.\n"
|
"you to earn items by playing songs at the Frog Choir.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"This setting does not effect the item earned from playing\n"
|
"This setting does not effect the item earned from playing\n"
|
||||||
"the Song of Storms and the frog song minigame."
|
"the Song of Storms and the frog song minigame."
|
||||||
|
@ -1038,7 +1038,7 @@ void EnFr_GiveReward(EnFr* this, GlobalContext* globalCtx) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void EnFr_SetIdle(EnFr* this, GlobalContext* globalCtx) {
|
void EnFr_SetIdle(EnFr* this, GlobalContext* globalCtx) {
|
||||||
if ((Message_GetState(&globalCtx->msgCtx) == TEXT_STATE_DONE) && Message_ShouldAdvance(globalCtx)) {
|
if ((Message_GetState(&globalCtx->msgCtx) == TEXT_STATE_DONE) && Message_ShouldAdvance(globalCtx) || (gSaveContext.n64ddFlag && this->reward == GI_ICE_TRAP)) {
|
||||||
this->actionFunc = EnFr_Idle;
|
this->actionFunc = EnFr_Idle;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user