summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEblo <7004497+Eblo@users.noreply.github.com>2025-07-25 08:10:50 -0400
committerGitHub <noreply@github.com>2025-07-25 08:10:50 -0400
commit0f745ff888b5a6841b0a623f61006cd3acad505f (patch)
tree58a4e4ec1e8599738830e79de297091ad120f4c2
parent1c7be58fab8698fcd05154b58544ed0d389ac1ff (diff)
Fix rando refills for Chateau Romani (#1216)
-rw-r--r--mm/2s2h/Rando/ConvertItem.cpp6
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;