diff options
Diffstat (limited to 'script/core')
-rw-r--r-- | script/core/noder.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/script/core/noder.lua b/script/core/noder.lua index 1e502339..2a60baee 100644 --- a/script/core/noder.lua +++ b/script/core/noder.lua @@ -887,7 +887,8 @@ local function compileCallParam(noders, call, sourceID) local eventNodeID for firstIndex, callArg in ipairs(call.args) do firstIndex = firstIndex - fixIndex - if firstIndex == 1 and callArg.type == 'string' then + if (firstIndex == 1 or firstIndex == 2) + and callArg.type == 'string' then if callArg[1] then eventNodeID = sformat('%s%s%s' , nodeID |