Action nodes work better now
This commit is contained in:
@@ -757,6 +757,28 @@ setup_action_handler("talk", {
|
||||
print("tag: " .. tag)
|
||||
end,
|
||||
})
|
||||
setup_action_handler("sit", {
|
||||
activate = function(this)
|
||||
print('sit activate')
|
||||
crash()
|
||||
end,
|
||||
event = function(this, event)
|
||||
print('event', event)
|
||||
end,
|
||||
finish = function(this)
|
||||
end,
|
||||
})
|
||||
setup_action_handler("use", {
|
||||
activate = function(this)
|
||||
print('sit activate')
|
||||
crash()
|
||||
end,
|
||||
event = function(this, event)
|
||||
print('event', event)
|
||||
end,
|
||||
finish = function(this)
|
||||
end,
|
||||
})
|
||||
--[[
|
||||
active_dialogues = {}
|
||||
setup_action_handler("talk", function(town, index, word)
|
||||
|
||||
Reference in New Issue
Block a user