Previously the one-liner for multiple variable initializations was referencing other variables in the same one-liner. This isn't allowed in LUA, it will use that variables previous value or nil if it didn't exist.
By setting OWNER separately, we can keep the rest of the one-liner.
Previously the one-liner for multiple variable initializations was referencing other variables in the same one-liner. This isn't allowed in LUA, it will use that variables previous value or
nil
if it didn't exist.By setting OWNER separately, we can keep the rest of the one-liner.
Fixes #91