Create indestructible nodes after all mods load
This commit is contained in:
parent
665ec17c69
commit
8b1de22854
1 changed files with 17 additions and 15 deletions
|
@ -117,6 +117,7 @@ local function make_immortal(def)
|
||||||
def.description = def.description and ("Indestructible " .. def.description)
|
def.description = def.description and ("Indestructible " .. def.description)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
minetest.register_on_mods_loaded(function()
|
||||||
local registered_nodes = table.copy(minetest.registered_nodes)
|
local registered_nodes = table.copy(minetest.registered_nodes)
|
||||||
for name, def in pairs(registered_nodes) do
|
for name, def in pairs(registered_nodes) do
|
||||||
local mod, nodename = name:match"(..-):(.+)"
|
local mod, nodename = name:match"(..-):(.+)"
|
||||||
|
@ -134,3 +135,4 @@ for name, def in pairs(registered_nodes) do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end)
|
||||||
|
|
Loading…
Reference in a new issue