mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2025-04-23 07:35:16 +02:00
Fix old signs conversion
This commit is contained in:
parent
0e66a42b78
commit
f1a4391bc4
1 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,7 @@ for old, new in pairs(signs) do
|
|||
for _, rotkey in ipairs(rotkeys) do
|
||||
mcl2rotsigns["mcl_signs:standing_sign"..rotkey..old] = newname
|
||||
end
|
||||
core.register_alias("mcl_signs:wall_sign"..old, newname)
|
||||
core.register_alias("mcl_signs:wall_sign"..old, "mcl_signs:wall_sign"..new)
|
||||
end
|
||||
|
||||
function mcl_signs.upgrade_sign_meta(pos)
|
||||
|
@ -73,7 +73,7 @@ function mcl_signs.upgrade_sign_meta(pos)
|
|||
mcl_signs.get_text_entity(pos, true) -- the 2nd "true" arg means deleting the entity for respawn
|
||||
end
|
||||
|
||||
function mcl_signs.upgrade_sign_rot(pos,node)
|
||||
function mcl_signs.upgrade_sign_rot(pos, node)
|
||||
local numsign = false
|
||||
|
||||
for _,v in pairs(rotkeys) do
|
||||
|
|
Loading…
Add table
Reference in a new issue