Make farmland height 15/16

This commit is contained in:
Wuzzy 2017-01-08 03:12:36 +01:00
parent 27a3cb2751
commit 3f702e43bd
1 changed files with 3 additions and 2 deletions

View File

@ -7,7 +7,8 @@ minetest.register_node("farming:soil", {
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, 0.4, 0.5},
-- 15/16 of the normal height
{-0.5, -0.5, -0.5, 0.5, 0.4375, 0.5},
}
},
groups = {crumbly=3, not_in_creative_inventory=1,soil=2},
@ -23,7 +24,7 @@ minetest.register_node("farming:soil_wet", {
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, 0.4, 0.5},
{-0.5, -0.5, -0.5, 0.5, 0.4375, 0.5},
}
},
groups = {crumbly=3, not_in_creative_inventory=1,soil=3},