Changed snow nodebox to 'walkable = false'

Allows walking in, and prevents being trapped in, 2 node high spaces.
Simulates player's feet sinking into snow.
Easier jumping up onto nodes with snow.
This commit is contained in:
DonBatman 2016-08-07 17:23:44 -07:00 committed by paramat
parent 14b99a72a9
commit 61a197ffd8

View File

@ -422,6 +422,7 @@ minetest.register_node("default:snow", {
paramtype = "light", paramtype = "light",
buildable_to = true, buildable_to = true,
floodable = true, floodable = true,
walkable = false,
drawtype = "nodebox", drawtype = "nodebox",
node_box = { node_box = {
type = "fixed", type = "fixed",