diff options
| author | Eblo <7004497+Eblo@users.noreply.github.com> | 2025-07-25 08:10:50 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-25 08:10:50 -0400 |
| commit | 0f745ff888b5a6841b0a623f61006cd3acad505f (patch) | |
| tree | 58a4e4ec1e8599738830e79de297091ad120f4c2 | |
| parent | 1c7be58fab8698fcd05154b58544ed0d389ac1ff (diff) | |
Fix rando refills for Chateau Romani (#1216)
| -rw-r--r-- | mm/2s2h/Rando/ConvertItem.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mm/2s2h/Rando/ConvertItem.cpp b/mm/2s2h/Rando/ConvertItem.cpp index bd253396a..13fb5cd8a 100644 --- a/mm/2s2h/Rando/ConvertItem.cpp +++ b/mm/2s2h/Rando/ConvertItem.cpp @@ -543,11 +543,15 @@ RandoItemId Rando::ConvertItem(RandoItemId randoItemId, RandoCheckId randoCheckI } break; case RI_BOTTLE_MILK: - case RI_BOTTLE_CHATEAU_ROMANI: if (Inventory_HasEmptyBottle()) { return RI_MILK_REFILL; } break; + case RI_BOTTLE_CHATEAU_ROMANI: + if (Inventory_HasEmptyBottle()) { + return RI_CHATEAU_ROMANI_REFILL; + } + break; case RI_BOTTLE_RED_POTION: if (Inventory_HasEmptyBottle()) { return RI_RED_POTION_REFILL; |
