Possible getConnector bug.
Possible getConnector bug.
I think Component:getConnector(i) contains a bug, because it only returns a string, namely the condition, while it seems it should return a list with the condition, target and action.
Re: Possible getConnector bug.
getConnector has multiple return values, you need to do something like this:
Code: Select all
local a,b,c = yourComponent:getConnector(1)
Re: Possible getConnector bug.
Oh lordpetri wrote:getConnector has multiple return values, you need to do something like this:
Code: Select all
local a,b,c = yourComponent:getConnector(1)

