Changed drawtype to nodebox

master
webdesigner97 2013-10-13 12:33:14 +02:00
parent 0df7fcd054
commit 81abbed3eb
1 changed files with 21 additions and 3 deletions

View File

@ -5,7 +5,13 @@ if streets.extendedBy.bucket == true and streets.extendedBy.wool then
inventory_image = "streets_sign_lava.png",
wield_image = "streets_sign_lava.png",
groups = {snappy = 1,attached_node = 1},
drawtype = "signlike",
drawtype = "nodebox",
node_box = {
type = "wallmounted",
fixed = {
{-0.4,-0.5,-0.4,0.4,-0.4,0.4}
}
},
paramtype = "light",
paramtype2 = "wallmounted",
walkable = false,
@ -33,7 +39,13 @@ if streets.extendedBy.bucket == true and streets.extendedBy.wool then
inventory_image = "streets_sign_water.png",
wield_image = "streets_sign_water.png",
groups = {snappy = 1,attached_node = 1},
drawtype = "signlike",
drawtype = "nodebox",
node_box = {
type = "wallmounted",
fixed = {
{-0.4,-0.5,-0.4,0.4,-0.4,0.4}
}
},
paramtype = "light",
paramtype2 = "wallmounted",
walkable = false,
@ -61,7 +73,13 @@ if streets.extendedBy.bucket == true and streets.extendedBy.wool then
inventory_image = "streets_sign_construction.png",
wield_image = "streets_sign_construction.png",
groups = {snappy = 1,attached_node = 1},
drawtype = "signlike",
drawtype = "nodebox",
node_box = {
type = "wallmounted",
fixed = {
{-0.4,-0.5,-0.4,0.4,-0.4,0.4}
}
},
paramtype = "light",
paramtype2 = "wallmounted",
walkable = false,