From 584937b05dd5daf951c76222023ecdac04680684 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=84=B8=EC=A0=A4=EA=B7=80=20=EA=B3=A0=EC=96=91=EC=9D=B4?= =?UTF-8?q?=EB=93=A4?= <46598063+qwreey75@users.noreply.github.com> Date: Fri, 24 Dec 2021 20:44:49 +0900 Subject: [PATCH] bugfix --- src/store.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store.lua b/src/store.lua index 42abc3a..88d3e18 100644 --- a/src/store.lua +++ b/src/store.lua @@ -156,7 +156,7 @@ function module.init(shared) return this; end function new.getStore(id) - return storeIdSpace[id]; + return storeIdSpace[id] or new.new({},id); end return new;