mirror of
https://github.com/mt-mods/homedecor_modpack.git
synced 2025-07-19 06:00:19 +02:00
Compare commits
2 Commits
2019-09-19
...
2019-09-22
Author | SHA1 | Date | |
---|---|---|---|
c118b43711 | |||
f6da0f7329 |
@ -2,4 +2,4 @@ homedecor_common
|
|||||||
default
|
default
|
||||||
basic_materials
|
basic_materials
|
||||||
dye
|
dye
|
||||||
basic_signs?
|
signs_lib?
|
||||||
|
@ -264,7 +264,7 @@ homedecor.register("fence_wrought_iron_2_corner", {
|
|||||||
})
|
})
|
||||||
|
|
||||||
-- insert the old wood signs-on-metal-fences into signs_lib's conversion LBM
|
-- insert the old wood signs-on-metal-fences into signs_lib's conversion LBM
|
||||||
if minetest.get_modpath("basic_signs") then
|
if minetest.get_modpath("signs_lib") then
|
||||||
table.insert(signs_lib.old_fenceposts_with_signs, "homedecor:fence_brass_with_sign")
|
table.insert(signs_lib.old_fenceposts_with_signs, "homedecor:fence_brass_with_sign")
|
||||||
signs_lib.old_fenceposts["homedecor:fence_brass_with_sign"] = "homedecor:fence_brass"
|
signs_lib.old_fenceposts["homedecor:fence_brass_with_sign"] = "homedecor:fence_brass"
|
||||||
signs_lib.old_fenceposts_replacement_signs["homedecor:fence_brass_with_sign"] = "default:sign_wall_wood_onpole"
|
signs_lib.old_fenceposts_replacement_signs["homedecor:fence_brass_with_sign"] = "default:sign_wall_wood_onpole"
|
||||||
@ -272,8 +272,6 @@ if minetest.get_modpath("basic_signs") then
|
|||||||
table.insert(signs_lib.old_fenceposts_with_signs, "homedecor:fence_wrought_iron_with_sign")
|
table.insert(signs_lib.old_fenceposts_with_signs, "homedecor:fence_wrought_iron_with_sign")
|
||||||
signs_lib.old_fenceposts["homedecor:fence_wrought_iron_with_sign"] = "homedecor:fence_wrought_iron"
|
signs_lib.old_fenceposts["homedecor:fence_wrought_iron_with_sign"] = "homedecor:fence_wrought_iron"
|
||||||
signs_lib.old_fenceposts_replacement_signs["homedecor:fence_wrought_iron_with_sign"] = "default:sign_wall_wood_onpole"
|
signs_lib.old_fenceposts_replacement_signs["homedecor:fence_wrought_iron_with_sign"] = "default:sign_wall_wood_onpole"
|
||||||
|
|
||||||
signs_lib.allowed_poles["homedecor:pole_brass"] = true
|
|
||||||
end
|
end
|
||||||
|
|
||||||
-- crafting
|
-- crafting
|
||||||
|
@ -103,7 +103,7 @@ if minetest.get_modpath("digilines") then
|
|||||||
local setchan = meta:get_string("channel")
|
local setchan = meta:get_string("channel")
|
||||||
if setchan ~= channel then return end
|
if setchan ~= channel then return end
|
||||||
|
|
||||||
if msg and msg ~= "" and type(msg) == "string" then
|
if msg ~= "" and (type(msg) == "string" or type(msg) == "number" ) then
|
||||||
local n = tonumber(msg)
|
local n = tonumber(msg)
|
||||||
local suff = word_to_bright[msg] or "invalid"
|
local suff = word_to_bright[msg] or "invalid"
|
||||||
|
|
||||||
|
@ -5,3 +5,4 @@ unifieddyes
|
|||||||
building_blocks?
|
building_blocks?
|
||||||
technic?
|
technic?
|
||||||
bucket?
|
bucket?
|
||||||
|
signs_lib?
|
||||||
|
@ -145,6 +145,7 @@ homedecor.register("pole_brass", {
|
|||||||
},
|
},
|
||||||
groups = {snappy=3},
|
groups = {snappy=3},
|
||||||
sounds = default.node_sound_wood_defaults(),
|
sounds = default.node_sound_wood_defaults(),
|
||||||
|
check_for_pole = true
|
||||||
})
|
})
|
||||||
|
|
||||||
homedecor.register("pole_wrought_iron", {
|
homedecor.register("pole_wrought_iron", {
|
||||||
|
Reference in New Issue
Block a user