summaryrefslogtreecommitdiff
path: root/maps/002-1.tmx
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2009-10-29 08:20:30 -0600
committerJared Adams <jaxad0127@gmail.com>2009-10-29 08:20:30 -0600
commit09423522d3a5e698d7bde4f38228a46f05903b60 (patch)
tree214ba4174eeb48186c3fa5c5f40daee303c34df7 /maps/002-1.tmx
parent136851c25f11e864afdef9f45cc37a876921d1cf (diff)
downloadclientdata-09423522d3a5e698d7bde4f38228a46f05903b60.tar.gz
clientdata-09423522d3a5e698d7bde4f38228a46f05903b60.tar.bz2
clientdata-09423522d3a5e698d7bde4f38228a46f05903b60.tar.xz
clientdata-09423522d3a5e698d7bde4f38228a46f05903b60.zip
Fix script calls
Diffstat (limited to 'maps/002-1.tmx')
-rw-r--r--maps/002-1.tmx4
1 files changed, 2 insertions, 2 deletions
diff --git a/maps/002-1.tmx b/maps/002-1.tmx
index d4f8ebd9..d19869fc 100644
--- a/maps/002-1.tmx
+++ b/maps/002-1.tmx
@@ -104,9 +104,9 @@
function npc_handler(npc, ch)
local v = do_choice(npc, ch, "Buy", "Sell")
if v == 1 then
- tmw.npc_trade(npc, ch, false, { {525, 0, 800}, {531, 0, 3000}, {530, 0, 8000}, {1199, 0, 3} })
+ mana.npc_trade(npc, ch, false, { {525, 0, 800}, {531, 0, 3000}, {530, 0, 8000}, {1199, 0, 3} })
elseif v == 2 then
- tmw.npc_trade(npc, ch, true, { {525, 0, 400}, {531, 0, 1500}, {530, 0, 4000}, {1199, 0, 1} })
+ mana.npc_trade(npc, ch, true, { {525, 0, 400}, {531, 0, 1500}, {530, 0, 4000}, {1199, 0, 1} })
end
do_npc_close(npc, ch)
end