diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-03-08 12:10:43 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-03-08 12:10:43 -0300 |
commit | 1523eeb076494c9cdf822cb30f2ec74a62ec0fad (patch) | |
tree | 7f59c08b95ef3a76f625e2d63f5e0fc28699c79e /npc | |
parent | 0e020ae1773b8a11ebeadbba5aaf1d82e119d10d (diff) | |
download | serverdata-1523eeb076494c9cdf822cb30f2ec74a62ec0fad.tar.gz serverdata-1523eeb076494c9cdf822cb30f2ec74a62ec0fad.tar.bz2 serverdata-1523eeb076494c9cdf822cb30f2ec74a62ec0fad.tar.xz serverdata-1523eeb076494c9cdf822cb30f2ec74a62ec0fad.zip |
Bad operand bug
Diffstat (limited to 'npc')
-rw-r--r-- | npc/017-3/chagashroom.txt | 10 |
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; |