Small fixes

This commit is contained in:
Justin van der Leij 2018-11-26 12:37:28 +01:00
parent f7a394f057
commit 6ddb28ffbc
10 changed files with 85 additions and 71 deletions

View file

@ -282,5 +282,7 @@ function Instance:onEntityRemoved(e) -- luacheck: ignore
end
return setmetatable(Instance, {
__call = function(_, ...) return Instance.new(...) end,
__call = function(_, ...)
return Instance.new(...)
end,
})