diff options
| author | Philipp Sehmisch <tmw@crushnet.org> | 2008-06-02 16:53:57 +0000 |
|---|---|---|
| committer | Philipp Sehmisch <tmw@crushnet.org> | 2008-06-02 16:53:57 +0000 |
| commit | 33d5ea3261e70cba7e0f4af5c1e6eb070f168112 (patch) | |
| tree | 8cb2bf9a5b52edb5fe38a4e3e03c39413ac5c19e /data/scripts/libtmw.lua | |
| parent | d828101f448520c191124f92d710ac5c3099529f (diff) | |
Removed the unused "npc" argument from the get_quest_var function.
Diffstat (limited to 'data/scripts/libtmw.lua')
| -rw-r--r-- | data/scripts/libtmw.lua | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
