update castles, areas, areas_protector, bakedclay, signs_lib,
bees, blox, bobblocks, coloredwood, homedecor, technic,
currency, digilines, digistguff, facade, farming_redo,
framedglass, gloopblocks, ilights, led_marquee, maptools,
mesecons, moreblocks, moreores, mymillwork, plasticbox,
replacer, ropes, street_signs, solidcolor, stained_glass,
teleport_request, unified_inventory, unifieddyes, worldedit,
add basic_signs, notify_hud_provider
2019-09-11 13:58:21 -04:00
|
|
|
-- Definitions for standard minetest_game wooden and steel wall signs
|
|
|
|
|
2019-09-14 22:49:07 -04:00
|
|
|
signs_lib.register_sign("default:sign_wall_wood", {
|
|
|
|
description = "Wooden wall sign",
|
|
|
|
inventory_image = "signs_lib_sign_wall_wooden_inv.png",
|
|
|
|
tiles = {
|
|
|
|
"signs_lib_sign_wall_wooden.png",
|
|
|
|
"signs_lib_sign_wall_wooden_edges.png",
|
|
|
|
},
|
2019-09-15 03:20:50 -04:00
|
|
|
entity_info = "standard",
|
|
|
|
allow_hanging = true,
|
2019-09-15 16:19:27 -04:00
|
|
|
allow_widefont = true
|
2019-09-14 22:49:07 -04:00
|
|
|
})
|
update castles, areas, areas_protector, bakedclay, signs_lib,
bees, blox, bobblocks, coloredwood, homedecor, technic,
currency, digilines, digistguff, facade, farming_redo,
framedglass, gloopblocks, ilights, led_marquee, maptools,
mesecons, moreblocks, moreores, mymillwork, plasticbox,
replacer, ropes, street_signs, solidcolor, stained_glass,
teleport_request, unified_inventory, unifieddyes, worldedit,
add basic_signs, notify_hud_provider
2019-09-11 13:58:21 -04:00
|
|
|
|
2019-09-14 22:49:07 -04:00
|
|
|
signs_lib.register_sign("default:sign_wall_steel", {
|
|
|
|
description = "Steel wall sign",
|
|
|
|
inventory_image = "signs_lib_sign_wall_steel_inv.png",
|
|
|
|
tiles = {
|
|
|
|
"signs_lib_sign_wall_steel.png",
|
|
|
|
"signs_lib_sign_wall_steel_edges.png",
|
|
|
|
},
|
|
|
|
groups = signs_lib.standard_steel_groups,
|
|
|
|
sounds = signs_lib.standard_steel_sign_sounds,
|
|
|
|
locked = true,
|
2019-09-15 03:20:50 -04:00
|
|
|
entity_info = "standard",
|
|
|
|
allow_hanging = true,
|
2019-09-15 16:19:27 -04:00
|
|
|
allow_widefont = true
|
2019-09-14 22:49:07 -04:00
|
|
|
})
|
update castles, areas, areas_protector, bakedclay, signs_lib,
bees, blox, bobblocks, coloredwood, homedecor, technic,
currency, digilines, digistguff, facade, farming_redo,
framedglass, gloopblocks, ilights, led_marquee, maptools,
mesecons, moreblocks, moreores, mymillwork, plasticbox,
replacer, ropes, street_signs, solidcolor, stained_glass,
teleport_request, unified_inventory, unifieddyes, worldedit,
add basic_signs, notify_hud_provider
2019-09-11 13:58:21 -04:00
|
|
|
|
2019-09-15 03:20:50 -04:00
|
|
|
minetest.register_alias("signs:sign_hanging", "default:sign_wall_wood_hanging")
|
|
|
|
minetest.register_alias("basic_signs:hanging_sign", "default:sign_wall_wood_hanging")
|
|
|
|
|
|
|
|
table.insert(signs_lib.lbm_restore_nodes, "signs:sign_hanging")
|
|
|
|
table.insert(signs_lib.lbm_restore_nodes, "basic_signs:hanging_sign")
|
|
|
|
|
2019-09-14 22:49:07 -04:00
|
|
|
-- insert the old wood sign-on-fencepost into signs_lib's conversion LBM
|
update castles, areas, areas_protector, bakedclay, signs_lib,
bees, blox, bobblocks, coloredwood, homedecor, technic,
currency, digilines, digistguff, facade, farming_redo,
framedglass, gloopblocks, ilights, led_marquee, maptools,
mesecons, moreblocks, moreores, mymillwork, plasticbox,
replacer, ropes, street_signs, solidcolor, stained_glass,
teleport_request, unified_inventory, unifieddyes, worldedit,
add basic_signs, notify_hud_provider
2019-09-11 13:58:21 -04:00
|
|
|
|
2019-09-14 22:49:07 -04:00
|
|
|
table.insert(signs_lib.old_fenceposts_with_signs, "signs:sign_post")
|
|
|
|
signs_lib.old_fenceposts["signs:sign_post"] = "default:fence_wood"
|
|
|
|
signs_lib.old_fenceposts_replacement_signs["signs:sign_post"] = "default:sign_wall_wood_onpole"
|