summaryrefslogtreecommitdiffstats
path: root/example/scripts/npcs/healer.lua
diff options
context:
space:
mode:
Diffstat (limited to 'example/scripts/npcs/healer.lua')
-rw-r--r--example/scripts/npcs/healer.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/example/scripts/npcs/healer.lua b/example/scripts/npcs/healer.lua
index 3569673..910e221 100644
--- a/example/scripts/npcs/healer.lua
+++ b/example/scripts/npcs/healer.lua
@@ -5,8 +5,8 @@
--]]
function Healer(npc, ch)
- npc_message(npc, ch, "Do you need healing?")
- local c = npc_choice(npc, ch, "Heal me fully", "Heal 100 HP", "Don't heal me")
+ npc_message("Do you need healing?")
+ local c = npc_choice("Heal me fully", "Heal 100 HP", "Don't heal me")
if c == 1 then
being_heal(ch)
elseif c == 2 then