mirror of
https://github.com/minetest/minetest_game.git
synced 2024-11-08 08:43:51 +01:00
fix crash from default.chest.register_chest
This commit is contained in:
parent
16c663f87e
commit
a43a6bcdef
@ -297,9 +297,10 @@ function default.chest.register_chest(prefixed_name, d)
|
||||
end
|
||||
|
||||
-- close opened chests on load
|
||||
local modname, chestname = prefixed_name:match("^(:?.-):(.*)$")
|
||||
minetest.register_lbm({
|
||||
label = "close opened chests on load",
|
||||
name = "default:close_" .. prefixed_name:gsub(":", "_") .. "_open",
|
||||
name = modname .. ":close_" .. chestname .. "_open",
|
||||
nodenames = {prefixed_name .. "_open"},
|
||||
run_at_every_load = true,
|
||||
action = function(pos, node)
|
||||
|
Loading…
Reference in New Issue
Block a user