summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/017-3/chagashroom.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/017-3/chagashroom.txt b/npc/017-3/chagashroom.txt
index 3adf9e56a..9a449bc49 100644
--- a/npc/017-3/chagashroom.txt
+++ b/npc/017-3/chagashroom.txt
@@ -77,11 +77,11 @@ L_Main:
mesc l("The bottom-most the water, the better the bonus.");
menuint
l("Cancel"), -1,
- rif(countitem(BottleOfSewerWater) > .@glass_count, l("Sewer Water")), 0,
- rif(countitem(BottleOfSeaWater) > .@glass_count, l("Sea Water")), 3600,
- rif(countitem(BottleOfTonoriWater) > .@glass_count, l("Tonori Water")), 11760,
- rif(countitem(BottleOfWoodlandWater) > .@glass_count, l("Woodland Water")), 12000,
- rif(countitem(BottleOfDivineWater) > .@glass_count, l("Divine Water")), 21600;
+ rif(countitem(BottleOfSewerWater) >= .@glass_count, l("Sewer Water")), 0,
+ rif(countitem(BottleOfSeaWater) >= .@glass_count, l("Sea Water")), 3600,
+ rif(countitem(BottleOfTonoriWater) >= .@glass_count, l("Tonori Water")), 11760,
+ rif(countitem(BottleOfWoodlandWater) >= .@glass_count, l("Woodland Water")), 12000,
+ rif(countitem(BottleOfDivineWater) >= .@glass_count, l("Divine Water")), 21600;
mes "";
if (@menuret < 0)
break;