Fix spiked railing nodebox

master
v-rob 2019-02-16 15:23:38 -08:00 committed by GitHub
parent 1b2725f7ca
commit 5fd5d29462
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -301,7 +301,7 @@ xpanes.register_pane("obsidian_pane", {
minetest.register_node("glass_stained:pane_bar_top_pane_single", {
description = "Spiked Steel Railing Pane (Single)",
drawtype = "nodebox",
tiles = {"glass_stained_bar_fancy.png"},
tiles = {"blank.png", "blank.png", "glass_stained_bar_fancy.png"},
wield_image = "glass_stained_bar_fancy.png",
paramtype = "light",
paramtype2 = "facedir",
@ -309,7 +309,7 @@ minetest.register_node("glass_stained:pane_bar_top_pane_single", {
is_ground_content = false,
node_box = {
type = "fixed",
fixed = nodeboxes["single"],
fixed = thick_nodeboxes["single"],
},
selection_box = {
type = "fixed",
@ -322,7 +322,7 @@ minetest.register_node("glass_stained:pane_bar_top_pane_single", {
minetest.register_node("glass_stained:pane_bar_top_pane_offset", {
description = "Spiked Steel Railing Pane (Offset)",
drawtype = "nodebox",
tiles = {"glass_stained_bar_fancy.png"},
tiles = {"blank.png", "blank.png", "glass_stained_bar_fancy.png"},
wield_image = "glass_stained_bar_fancy.png",
paramtype = "light",
paramtype2 = "facedir",
@ -330,7 +330,7 @@ minetest.register_node("glass_stained:pane_bar_top_pane_offset", {
is_ground_content = false,
node_box = {
type = "fixed",
fixed = nodeboxes["offset"],
fixed = thick_nodeboxes["offset"],
},
selection_box = {
type = "fixed",