1
0
mirror of https://github.com/mt-mods/homedecor_modpack.git synced 2025-07-20 06:10:23 +02:00

abstract common nodebox forms, fixing some ignored ones in the process

This commit is contained in:
Tim
2015-01-23 17:40:57 +01:00
committed by Vanessa Ezekowitz
parent 6245956ba4
commit b5188493cc
17 changed files with 114 additions and 259 deletions

View File

@ -14,10 +14,7 @@ minetest.register_node("homedecor:cobweb_corner", {
liquid_renewable = false,
liquid_range = 0,
walkable = false,
selection_box = {
type = "fixed",
fixed = {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5}
},
selection_box = { type = "regular" },
visual_scale = 1.4,
groups = { snappy = 3, liquid=3 },
after_place_node = function(pos, placer, itemstack, pointed_thing)
@ -94,10 +91,7 @@ minetest.register_node("homedecor:cobweb_plantlike", {
liquid_renewable = false,
liquid_range = 0,
walkable = false,
selection_box = {
type = "fixed",
fixed = {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5}
},
selection_box = { type = "regular" },
visual_scale = 1.189,
groups = { snappy = 3, liquid=3, not_in_creative_inventory = 1 },
drop = "homedecor:cobweb_corner"