mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Fix r2ed
--HG-- branch : develop
This commit is contained in:
parent
74e9aac960
commit
c789a22155
2 changed files with 4 additions and 1 deletions
|
@ -541,7 +541,7 @@ Translator.translateEventHandlers = function(context, hlNpc, eventHandlers, rtNp
|
|||
while k do
|
||||
local caller = nil
|
||||
if devMode then
|
||||
caller = function (...) arg[1](arg[2], arg[3], arg[4], arg[5]) return true end
|
||||
caller = function (...) local arg = {...} arg[1](arg[2], arg[3], arg[4], arg[5]) return true end
|
||||
|
||||
else
|
||||
caller = pcall
|
||||
|
@ -898,6 +898,7 @@ end
|
|||
-- Returns a RtNpcEventHandlerAction if the action is allowed
|
||||
--first parameter: action type
|
||||
Translator.createAction = function(...)
|
||||
local arg = {...}
|
||||
local debug=config.R2EDExtendedDebug
|
||||
local function header(toto)
|
||||
|
||||
|
@ -2774,6 +2775,7 @@ end
|
|||
--third param : GroupsByName
|
||||
--then, parameters
|
||||
Translator.createEvent = function(...)
|
||||
local arg = {...}
|
||||
local event = r2.newComponent("RtNpcEventHandler")
|
||||
local eventType = arg[1]
|
||||
event.Event = eventType
|
||||
|
|
|
@ -1030,6 +1030,7 @@ end
|
|||
--------------------
|
||||
--------------------
|
||||
function r2:updateAnimBarActions(...)
|
||||
local arg = {...}
|
||||
-- forward to the real anim bar
|
||||
r2.ui.AnimBar:updateActions(arg)
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue