diff --git a/mods/default/nodes.lua b/mods/default/nodes.lua index c6fff68..6552351 100644 --- a/mods/default/nodes.lua +++ b/mods/default/nodes.lua @@ -817,23 +817,20 @@ minetest.register_node( "default:sign", { description = "Sign", - drawtype = "signlike", + drawtype = "nodebox", tiles = {"default_sign.png"}, - inventory_image = "default_sign.png", - wield_image = "default_sign.png", + inventory_image = "default_sign_inventory.png", + wield_image = "default_sign_inventory.png", paramtype = "light", paramtype2 = "wallmounted", sunlight_propagates = true, is_ground_content = false, walkable = false, - selection_box = { + node_box = { type = "wallmounted", - wall_top = {-0.5+(4/16), 0.5, -0.5+(1/16), 0.5-(4/16), 0.5-(1/16), 0.5-(1/16)}, - wall_bottom = {-0.5+(4/16), -0.5, -0.5+(1/16), 0.5-(4/16), -0.5+(1/16), 0.5-(1/16)}, + wall_top = {-0.5+(1/16), 0.5, -0.5+(4/16), 0.5-(1/16), 0.5-(1/16), 0.5-(4/16)}, + wall_bottom = {-0.5+(1/16), -0.5, -0.5+(4/16), 0.5-(1/16), -0.5+(1/16), 0.5-(4/16)}, wall_side = {-0.5, -0.5+(4/16), -0.5+(1/16), -0.5+(1/16), 0.5-(4/16), 0.5-(1/16)}, - --wall_top = - --wall_bottom = - --wall_side = }, groups = {choppy=2,dig_immediate=2,attached_node=1}, legacy_wallmounted = true, diff --git a/mods/default/textures/default_fence.png b/mods/default/textures/default_fence.png index 9fc41c1..6ba4abf 100644 Binary files a/mods/default/textures/default_fence.png and b/mods/default/textures/default_fence.png differ diff --git a/mods/default/textures/default_fence.xcf b/mods/default/textures/default_fence.xcf index 4b54707..51df4ec 100644 Binary files a/mods/default/textures/default_fence.xcf and b/mods/default/textures/default_fence.xcf differ diff --git a/mods/default/textures/default_sign.png b/mods/default/textures/default_sign.png index 62fbd56..ae6b948 100644 Binary files a/mods/default/textures/default_sign.png and b/mods/default/textures/default_sign.png differ diff --git a/mods/default/textures/default_sign.xcf b/mods/default/textures/default_sign.xcf index c00321a..22c113e 100644 Binary files a/mods/default/textures/default_sign.xcf and b/mods/default/textures/default_sign.xcf differ diff --git a/mods/default/textures/default_sign_inventory.png b/mods/default/textures/default_sign_inventory.png new file mode 100644 index 0000000..77e733a Binary files /dev/null and b/mods/default/textures/default_sign_inventory.png differ diff --git a/mods/default/textures/default_sign_inventory.xcf b/mods/default/textures/default_sign_inventory.xcf new file mode 100644 index 0000000..b060821 Binary files /dev/null and b/mods/default/textures/default_sign_inventory.xcf differ