This commit is contained in:
세젤귀 고양이들 2022-01-06 20:31:14 +09:00
parent 10ef334a8b
commit ff36d8a744

View file

@ -99,7 +99,7 @@ function module.init(shared)
local tstore = value.store;
local rawKey = value.key;
local set = tstore[rawKey];
if set or (rawKey:match(",") and with) then
if type(set) ~= "nil" or (rawKey:match(",") and with) then
if with then
set = with(tstore,set,value.key,item);
end