Ores, tools, and wielditems
This commit is contained in:
parent
889aa531ba
commit
9e63d7fe3a
31 changed files with 268 additions and 12 deletions
12
mods/rgt_entities/init.lua
Normal file
12
mods/rgt_entities/init.lua
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
|
||||
minetest.register_entity(":display", {
|
||||
initial_properties = {
|
||||
visual = "sprite",
|
||||
textures = {"blank.png"},
|
||||
pointable = false,
|
||||
static_save = false
|
||||
},
|
||||
on_activate = function(e)
|
||||
e.object:set_armor_groups{immortal = 1}
|
||||
end
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue