1
0
mirror of https://github.com/pyrollo/display_modpack.git synced 2025-10-16 09:05:22 +02:00

Use initial_properties (#6)

* Use initial_properties

* Add more copyright information

* It's LGPL not GPL
This commit is contained in:
Niklp
2023-09-30 22:42:41 +02:00
committed by GitHub
parent d7d55fbb79
commit e25588cf91
23 changed files with 28 additions and 1406 deletions

View File

@@ -61,9 +61,11 @@ minetest.register_lbm({ name = "signs:conpatibility_1",
-- We need to have this entity registered to be able to remove it.
if minetest.registered_entities["signs:text"] == nil then
minetest.register_entity("signs:text", {
collisionbox = { 0, 0, 0, 0, 0, 0 },
visual = "upright_sprite",
textures = {},
initial_properties = {
collisionbox = {0, 0, 0, 0, 0, 0},
visual = "upright_sprite",
textures = {}
}
})
end