mirror of
https://github.com/Splizard/minetest-mod-snow.git
synced 2024-12-28 07:30:17 +01:00
Merge pull request #31 from DS-Minetest/sboxl
make snow selection_box leveled
This commit is contained in:
commit
6f9ba85f51
@ -389,11 +389,14 @@ minetest.override_item("default:snow", {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
leveled = 7,
|
leveled = 7,
|
||||||
|
paramtype2 = "leveled",
|
||||||
node_box = {
|
node_box = {
|
||||||
type = "leveled",
|
type = "leveled",
|
||||||
fixed = {
|
fixed = {-0.5, -0.5, -0.5, 0.5, -0.5, 0.5},
|
||||||
{-0.5, -0.5, -0.5, 0.5, -0.5, 0.5},
|
},
|
||||||
},
|
selection_box = {
|
||||||
|
type = "leveled",
|
||||||
|
fixed = {-0.5, -0.5, -0.5, 0.5, -0.5, 0.5},
|
||||||
},
|
},
|
||||||
groups = {cracky=3, crumbly=3, choppy=3, oddly_breakable_by_hand=3,
|
groups = {cracky=3, crumbly=3, choppy=3, oddly_breakable_by_hand=3,
|
||||||
falling_node=1, melts=2, float=1},
|
falling_node=1, melts=2, float=1},
|
||||||
|
Loading…
Reference in New Issue
Block a user