mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-22 18:41:09 +01:00
Fix incorrect sign entity staticdata activate
This commit is contained in:
parent
fd281dfe50
commit
461f5738d5
1 changed files with 1 additions and 1 deletions
|
@ -433,7 +433,7 @@ minetest.register_entity("mcl_signs:text", {
|
|||
self.object:set_armor_groups({ immortal = 1 })
|
||||
end,
|
||||
get_staticdata = function(self)
|
||||
local out = { self._signnodename }
|
||||
local out = { _signnodename = self._signnodename }
|
||||
return minetest.serialize(out)
|
||||
end,
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue