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,8 +117,9 @@ local function make_immortal(def)
|
||||||
def.description = def.description and ("Indestructible " .. def.description)
|
def.description = def.description and ("Indestructible " .. def.description)
|
||||||
end
|
end
|
||||||
|
|
||||||
local registered_nodes = table.copy(minetest.registered_nodes)
|
minetest.register_on_mods_loaded(function()
|
||||||
for name, def in pairs(registered_nodes) do
|
local registered_nodes = table.copy(minetest.registered_nodes)
|
||||||
|
for name, def in pairs(registered_nodes) do
|
||||||
local mod, nodename = name:match"(..-):(.+)"
|
local mod, nodename = name:match"(..-):(.+)"
|
||||||
local prefix = mod_prefixes[mod]
|
local prefix = mod_prefixes[mod]
|
||||||
if nodename and prefix and not (def.groups and def.groups.mortal) then
|
if nodename and prefix and not (def.groups and def.groups.mortal) then
|
||||||
|
@ -133,4 +134,5 @@ for name, def in pairs(registered_nodes) do
|
||||||
minetest.register_alias("ctf_map:" .. nodename, new_name)
|
minetest.register_alias("ctf_map:" .. nodename, new_name)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end)
|
||||||
|
|
Loading…
Reference in a new issue