forked from VoxeLibre/VoxeLibre
Added in Crimson Hyphae and Warped Hyphae Signs
Added in Crimson Hyphae and Warped Hyphae Signs. Didn't do the the translations for them.
This commit is contained in:
parent
162bd36101
commit
dd1e4ca927
|
@ -129,6 +129,23 @@ mcl_signs.register_sign_craft("mcl_core", "mcl_core:acaciawood", "_acaciawood")
|
||||||
mcl_signs.register_sign("mcl_core", "#b8693d", "_mangrove_wood", "Mangrove Sign")
|
mcl_signs.register_sign("mcl_core", "#b8693d", "_mangrove_wood", "Mangrove Sign")
|
||||||
mcl_signs.register_sign_craft("mcl_core", "mcl_core:mangrove_wood", "_mangrove_wood")
|
mcl_signs.register_sign_craft("mcl_core", "mcl_core:mangrove_wood", "_mangrove_wood")
|
||||||
|
|
||||||
|
-- add in the nether wood signs
|
||||||
|
if minetest.get_modpath("mcl_crimson") then
|
||||||
|
|
||||||
|
-- warped_hyphae_wood Sign
|
||||||
|
mcl_signs.register_sign_custom("mcl_crimson","_warped_hyphae_wood", "mcl_signs_sign_greyscale.png",
|
||||||
|
"#9f7dcf", "default_sign_greyscale.png", "default_sign_greyscale.png",
|
||||||
|
"Warped Hyphae Sign")
|
||||||
|
mcl_signs.register_sign_craft("mcl_crimson", "mcl_crimson:warped_hyphae_wood", "_warped_hyphae_wood")
|
||||||
|
|
||||||
|
-- crimson_hyphae_wood Sign
|
||||||
|
mcl_signs.register_sign_custom("mcl_crimson", "_crimson_hyphae_wood","mcl_signs_sign_greyscale.png",
|
||||||
|
"#c35f51","default_sign_greyscale.png", "default_sign_greyscale.png",
|
||||||
|
"Crimson Hyphae Sign")
|
||||||
|
mcl_signs.register_sign_craft("mcl_crimson", "mcl_crimson:crimson_hyphae_wood", "_crimson_hyphae_wood")
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
-- Register the LBMs for the created signs.
|
-- Register the LBMs for the created signs.
|
||||||
mcl_signs.make_lbm()
|
mcl_signs.make_lbm()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue