Skip to content

Commit

Permalink
Fix spiked railing nodebox
Browse files Browse the repository at this point in the history
  • Loading branch information
v-rob committed Feb 16, 2019
1 parent 1b2725f commit 5fd5d29
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -301,15 +301,15 @@ 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",
sunlight_propagates = true,
is_ground_content = false,
node_box = {
type = "fixed",
fixed = nodeboxes["single"],
fixed = thick_nodeboxes["single"],
},
selection_box = {
type = "fixed",
Expand All @@ -322,15 +322,15 @@ 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",
sunlight_propagates = true,
is_ground_content = false,
node_box = {
type = "fixed",
fixed = nodeboxes["offset"],
fixed = thick_nodeboxes["offset"],
},
selection_box = {
type = "fixed",
Expand Down

0 comments on commit 5fd5d29

Please sign in to comment.