1
0
mirror of https://github.com/mt-mods/signs_lib.git synced 2025-07-07 10:10:28 +02:00

add initial_properties

Adds initial_properties update so that 5.7dev doesn't throw an error when entering text on signs.
This commit is contained in:
tenplus1
2023-09-23 14:33:56 +01:00
committed by GitHub
parent cd6bf1eabe
commit 7633d84e89

View File

@ -166,12 +166,15 @@ local ctexcache_wide = {}
-- entity handling -- entity handling
minetest.register_entity("signs_lib:text", { minetest.register_entity("signs_lib:text", {
initial_properties = {
collisionbox = { 0, 0, 0, 0, 0, 0 }, collisionbox = { 0, 0, 0, 0, 0, 0 },
visual = "mesh", visual = "mesh",
mesh = "signs_lib_standard_sign_entity_wall.obj", mesh = "signs_lib_standard_sign_entity_wall.obj",
textures = {}, textures = {},
static_save = true, static_save = true,
backface_culling = false, backface_culling = false,
},
on_activate = function(self) on_activate = function(self)
local node = minetest.get_node(self.object:get_pos()) local node = minetest.get_node(self.object:get_pos())
if minetest.get_item_group(node.name, "sign") == 0 then if minetest.get_item_group(node.name, "sign") == 0 then