From 2541c3f29314abb5066360d21e95159414bf8583 Mon Sep 17 00:00:00 2001 From: SuperDude88 <82904174+SuperDude88@users.noreply.github.com> Date: Sat, 16 May 2026 04:28:21 -0400 Subject: [PATCH 1/2] Update Description (#1439) Mention that it applies to other cases besides just boots --- src/dusk/ui/settings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dusk/ui/settings.cpp b/src/dusk/ui/settings.cpp index 34b7496df0..f12cb11ade 100644 --- a/src/dusk/ui/settings.cpp +++ b/src/dusk/ui/settings.cpp @@ -1165,7 +1165,7 @@ SettingsWindow::SettingsWindow(bool prelaunch) : mPrelaunch(prelaunch) { addCheat("Always Greatspin", getSettings().game.alwaysGreatspin, "Allows the Great Spin attack without requiring full health."); addCheat("Fast Iron Boots", getSettings().game.enableFastIronBoots, - "Speeds up movement while wearing the Iron Boots."); + "Speeds up movement while heavy, including wearing the Iron Boots, holding the Ball and Chain, wearing Magic Armor without rupees, etc."); addCheat("Can Transform Anywhere", getSettings().game.canTransformAnywhere, "Allows transforming even if NPCs are looking."); addCheat("Fast Roll", getSettings().game.fastRoll, From 8adc40708ecd7451b6ea1ea964a42feaa5e68b97 Mon Sep 17 00:00:00 2001 From: MelonSpeedruns Date: Sat, 16 May 2026 04:28:45 -0400 Subject: [PATCH 2/2] Infinite Rupee now set to max Rupees (#1417) Co-authored-by: MelonSpeedruns --- src/f_ap/f_ap_game.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/f_ap/f_ap_game.cpp b/src/f_ap/f_ap_game.cpp index 2e7e5b531e..72219e98dd 100644 --- a/src/f_ap/f_ap_game.cpp +++ b/src/f_ap/f_ap_game.cpp @@ -807,7 +807,7 @@ static void duskExecute() { } if (dusk::getSettings().game.infiniteRupees) { - dComIfGs_setRupee(9999); + dComIfGs_setRupee(dComIfGs_getRupeeMax()); } if (dusk::getSettings().game.infiniteOxygen) {