diff --git a/mods/default/nodes.lua b/mods/default/nodes.lua index 5bbe79d2..31d8aa6e 100644 --- a/mods/default/nodes.lua +++ b/mods/default/nodes.lua @@ -694,8 +694,8 @@ minetest.register_node("default:torch", { minetest.register_node("default:sign_wall", { description = "Sign", - drawtype = "signlike", - tiles = {"default_sign_wall.png"}, + drawtype = "nodebox", + tiles = {"default_sign.png"}, inventory_image = "default_sign_wall.png", wield_image = "default_sign_wall.png", paramtype = "light", @@ -703,11 +703,11 @@ minetest.register_node("default:sign_wall", { sunlight_propagates = true, is_ground_content = false, walkable = false, - selection_box = { + node_box = { type = "wallmounted", - --wall_top = - --wall_bottom = - --wall_side = + wall_top = {-0.4375, 0.4375, -0.3125, 0.4375, 0.5, 0.3125}, + wall_bottom = {-0.4375, -0.5, -0.3125, 0.4375, -0.4375, 0.3125}, + wall_side = {-0.5, -0.3125, -0.4375, -0.4375, 0.3125, 0.4375}, }, groups = {choppy=2,dig_immediate=2,attached_node=1}, legacy_wallmounted = true, diff --git a/mods/default/textures/default_sign.png b/mods/default/textures/default_sign.png new file mode 100644 index 00000000..be5e916a Binary files /dev/null and b/mods/default/textures/default_sign.png differ