From 33d5ea3261e70cba7e0f4af5c1e6eb070f168112 Mon Sep 17 00:00:00 2001 From: Philipp Sehmisch Date: Mon, 2 Jun 2008 16:53:57 +0000 Subject: Removed the unused "npc" argument from the get_quest_var function. --- data/scripts/libtmw.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'data/scripts/libtmw.lua') diff --git a/data/scripts/libtmw.lua b/data/scripts/libtmw.lua index 2471b7c..e788a59 100644 --- a/data/scripts/libtmw.lua +++ b/data/scripts/libtmw.lua @@ -91,7 +91,7 @@ end -- Gets the value of a quest variable. -- Calling this function while an acknowledment is pending is desirable, so -- that lag cannot be perceived by the player. -function get_quest_var(npc, ch, name) +function get_quest_var(ch, name) -- Query the server and return immediatly if a value is available. local value = tmw.chr_get_quest(ch, name) if value then return value end -- cgit