summaryrefslogtreecommitdiffstats
path: root/scripts/lua/libmana.lua
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2012-03-10 23:20:44 +0100
committerThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2012-03-11 16:56:47 +0100
commit2dd3c5c06978584e3e076609554f225ffbabd3e2 (patch)
tree0673264e014e235982dca26dbfd426ae09a94c62 /scripts/lua/libmana.lua
parent520705579d6a68cf6908275026eef2edee0758af (diff)
downloadmanaserv-2dd3c5c06978584e3e076609554f225ffbabd3e2.tar.gz
manaserv-2dd3c5c06978584e3e076609554f225ffbabd3e2.tar.xz
manaserv-2dd3c5c06978584e3e076609554f225ffbabd3e2.zip
Removed deprecated NPC helper functions
Reviewed-by: Erik Schilling
Diffstat (limited to 'scripts/lua/libmana.lua')
-rw-r--r--scripts/lua/libmana.lua9
1 files changed, 0 insertions, 9 deletions
diff --git a/scripts/lua/libmana.lua b/scripts/lua/libmana.lua
index c170da2..89d16ae 100644
--- a/scripts/lua/libmana.lua
+++ b/scripts/lua/libmana.lua
@@ -39,15 +39,6 @@ function create_npc(name, id, gender, x, y, talkfunct, updatefunct)
return npc
end
--- These are deprecated and only provided for compatibility!
-do_message = mana.npc_message
-do_choice = mana.npc_choice
-do_ask_integer = mana.npc_ask_integer
-do_ask_string = mana.npc_ask_string
-do_post = mana.npc_post
-get_quest_var = mana.chr_get_quest
-getpost = mana.chr_get_post
-
-- Registered as the function to call whenever a player starts talking to an
-- NPC. Calls the registered NPC handler.
local function npc_start(npc, ch)