diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2011-11-06 18:01:21 -0800 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2011-11-06 18:01:21 -0800 |
commit | 72bde3af78d170639093e7befd02ead4ffea2ba7 (patch) | |
tree | 8e2d802771d38a581615f8c150918aa008054255 /world/map | |
parent | 58237900bdcbb66a828fcf19c7ad670ef8847d0f (diff) | |
download | serverdata-72bde3af78d170639093e7befd02ead4ffea2ba7.tar.gz serverdata-72bde3af78d170639093e7befd02ead4ffea2ba7.tar.bz2 serverdata-72bde3af78d170639093e7befd02ead4ffea2ba7.tar.xz serverdata-72bde3af78d170639093e7befd02ead4ffea2ba7.zip |
Fix an exploit involving buying small mushrooms and selling iron potions.
Diffstat (limited to 'world/map')
-rw-r--r-- | world/map/npc/011-1/alchemist.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/world/map/npc/011-1/alchemist.txt b/world/map/npc/011-1/alchemist.txt index b1cf78f2..ab10acfc 100644 --- a/world/map/npc/011-1/alchemist.txt +++ b/world/map/npc/011-1/alchemist.txt @@ -287,7 +287,7 @@ L_mana_potion_lacking: goto L_main_menu; L_iron: - set @COST_PER_IRON_POTION, 2; + set @COST_PER_IRON_POTION, 4; mes "\" To make them, I'm going to need " + @COST_PER_IRON_POTION + " Small Mushrooms per Iron Potion. How many Iron Potions would you like?\""; input @count; @@ -1019,4 +1019,4 @@ L_TooMany: mes "[Rauk the Alchemist]"; mes "You don't have room for this."; close; -}
\ No newline at end of file +} |