Update init.lua
This commit is contained in:
parent
e61ba00893
commit
23ad73fe25
1 changed files with 3 additions and 3 deletions
|
|
@ -39,9 +39,9 @@ local idSpace = {};
|
|||
---@return quad_module_tween tween
|
||||
function module.init(id)
|
||||
if id then
|
||||
local last = idSpace[id];
|
||||
if last then
|
||||
return last;
|
||||
local this = idSpace[id];
|
||||
if this then
|
||||
return this,this.round,this.class,this.mount,this.store,this.event,this.tween;
|
||||
end
|
||||
end
|
||||
local this = {items = {}};
|
||||
|
|
|
|||
Loading…
Reference in a new issue