diff options
| author | Ralphie Morell <rafael.morell@techfield.us> | 2023-11-13 23:45:15 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-13 23:45:15 -0500 |
| commit | cf88b3d2bf0b7e63506f823b0e1bac0d2743124b (patch) | |
| tree | 2e21bcc4fbb970125d480d1c2ce4ef514054bc4d | |
| parent | 78ffb41cd2d8fa3e68ee9fcb1fb496ddeede878e (diff) | |
Fix edge case of MS shuffle (#3364)
| -rw-r--r-- | soh/src/code/z_parameter.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/soh/src/code/z_parameter.c b/soh/src/code/z_parameter.c index ec25d2062..bbaa8d90b 100644 --- a/soh/src/code/z_parameter.c +++ b/soh/src/code/z_parameter.c @@ -1469,6 +1469,7 @@ void Inventory_SwapAgeEquipment(void) { gSaveContext.equips.buttonItems[0] = ITEM_SWORD_MASTER; } else { gSaveContext.equips.buttonItems[0] = ITEM_NONE; + Flags_SetInfTable(INFTABLE_SWORDLESS); } if (gSaveContext.inventory.items[SLOT_NUT] != ITEM_NONE) { |
