diff options
author | chai <chaifix@163.com> | 2021-10-23 18:19:18 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-10-23 18:19:18 +0800 |
commit | 7bf672fd0c6211909d94078b448032b1bd0916ef (patch) | |
tree | 655b875b81ec8d0559ca905fb7d37a1d88e6a80d /Resources/DefaultContent | |
parent | df0444f85f9bf623cc886e1632e624ef20cb0f1b (diff) |
*misc
Diffstat (limited to 'Resources/DefaultContent')
-rw-r--r-- | Resources/DefaultContent/Libraries/GameLab/Class.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Resources/DefaultContent/Libraries/GameLab/Class.lua b/Resources/DefaultContent/Libraries/GameLab/Class.lua index 8f74d10..cb08449 100644 --- a/Resources/DefaultContent/Libraries/GameLab/Class.lua +++ b/Resources/DefaultContent/Libraries/GameLab/Class.lua @@ -21,7 +21,7 @@ local Class = function(className, pkg) local child = _class(childName, childPkg)
if cls then
setmetatable(child, cls)
- child._base = cls
+ child.base = cls
end
return child
end
|