Fix soaking meta cache corruption

This was causing soaking things to finish early
and all fire at the same time.
This commit is contained in:
Aaron Suen 2021-12-11 21:10:27 -05:00
parent 5caf66f6ea
commit 430f08385c

View File

@ -25,7 +25,7 @@ local function metaget(meta, def, nodekey)
if nodekey then
cached = cached or {}
cached[fn] = inner
metacache = cached
metacache[nodekey] = cached
end
return inner
end