From e61ba008932428bcc1686974fc450008b807f980 Mon Sep 17 00:00:00 2001 From: Qwreey Date: Fri, 12 Aug 2022 01:08:35 +0900 Subject: [PATCH] bugfix --- src/mount.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mount.lua b/src/mount.lua index 7df79f3..5440d4a 100644 --- a/src/mount.lua +++ b/src/mount.lua @@ -49,6 +49,8 @@ function module.init(shared) end if thisObject then thisObject.Parent = holder or getHolder(to); + else + this.Parent = holder or getHolder(to); end if type(to) == "table" then local child = rawget(to,"__child");