Made the box a nodebox
This commit is contained in:
parent
1a69cd2301
commit
64669887c2
@ -7,6 +7,17 @@ minetest.register_node("poop:box", {
|
|||||||
|
|
||||||
drop = 'poop:box',
|
drop = 'poop:box',
|
||||||
legacy_mineral = true,
|
legacy_mineral = true,
|
||||||
|
drawtype = "nodebox",
|
||||||
|
paramtype = "light",
|
||||||
|
node_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = {
|
||||||
|
{-0.25, -0.5, -0.3125, 0.25, -0.3125, 0.3125}, -- NodeBox6
|
||||||
|
{-0.3125, -0.3125, -0.375, 0.3125, -0.1875, 0.4375}, -- NodeBox7
|
||||||
|
{-0.3125, -0.1875, -0.4375, 0.3125, 0, 0.5}, -- NodeBox8
|
||||||
|
{-0.25, 0, 0.1875, 0.25, 0.5, 0.5}, -- NodeBox9
|
||||||
|
}
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("poop:floor", {
|
minetest.register_node("poop:floor", {
|
||||||
@ -24,7 +35,7 @@ minetest.register_node("poop:Poop", {
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("poop:tv", {
|
minetest.register_node("poop:tv", {
|
||||||
description = "CRTV",
|
description = "CRT TV",
|
||||||
tiles = {"PC2.png", "PC2.png","PC2.png","PC.png","PC2.png","PC2.png"},
|
tiles = {"PC2.png", "PC2.png","PC2.png","PC.png","PC2.png","PC2.png"},
|
||||||
|
|
||||||
drop = 'poop:Poop',
|
drop = 'poop:Poop',
|
||||||
|
Loading…
Reference in New Issue
Block a user