Skip to content
Snippets Groups Projects
Commit cfec2c5a authored by DarkGod's avatar DarkGod
Browse files

Chat:load hook exposes the chat file environment

parent ec93fecf
No related branches found
No related tags found
No related merge requests found
......@@ -43,16 +43,17 @@ function _M:init(name, npc, player, data)
local f, err = loadfile(self:getChatFile(name))
if not f and err then error(err) end
setfenv(f, setmetatable({
local env = setmetatable({
cur_chat = self,
setDialogWidth = function(w) self.force_dialog_width = w end,
newChat = function(c) self:addChat(c) end,
setTextFont = function(font, size) self.dialog_text_font = {font, size} end,
setAnswerFont = function(font, size) self.dialog_answer_font = {font, size} end,
}, {__index=data}))
}, {__index=data})
setfenv(f, env)
self.default_id = f()
self:triggerHook{"Chat:load", data=data}
self:triggerHook{"Chat:load", data=data, env=env}
end
--- Get chat file
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment