Differences From Artifact [979397aff5]:
- File mods/vtlib/marshal.lua — part of check-in [5267c0742d] at 2024-05-07 00:27:19 on branch trunk — add basic electrical parts, fix scrollbars to the greatest extent possible, fix error in marshal error msg, tweak inane compute stats (user: lexi, size: 11272) [annotate] [blame] [check-ins using]
To Artifact [63566b8bdf]:
- File mods/vtlib/marshal.lua — part of check-in [4732f8d454] at 2025-01-19 19:18:55 on branch trunk — we have always been at war with east minecraft (user: lexi, size: 11268) [annotate] [blame] [check-ins using]
91 91 end 92 92 93 93 return encoder 94 94 end 95 95 96 96 function m.metaStore(map, prefix) 97 97 report('generating metaStore for %s', dump(map)) 98 - if prefix == true then prefix = minetest.get_current_modname() end 98 + if prefix == true then prefix = core.get_current_modname() end 99 99 local function keyFor(k) 100 100 k = map[k].key 101 101 if prefix then return prefix .. ':' .. k end 102 102 return k 103 103 end 104 104 105 105 return function(obj)