Small fixes for the latest version of minetest.

This commit is contained in:
Splizard 2015-01-12 11:12:51 +13:00
parent 37ecfd02a8
commit f99ba3a1f6
3 changed files with 8 additions and 1 deletions

View File

@ -127,6 +127,7 @@ snow.is_uneven = function(pos)
local found
local foundx
local foundy
local foundz
for x=-1,1 do
for z=-1,1 do
local node = get_node({x=pos.x+x,y=pos.y,z=pos.z+z})

View File

@ -130,6 +130,12 @@ minetest.override_item("default:snow", {
}
}
},
node_box = {
type = "leveled",
fixed = {
{-0.5, -0.5, -0.5, 0.5, -0.5+2/16, 0.5},
},
},
groups = {cracky=3, crumbly=3, choppy=3, oddly_breakable_by_hand=3,falling_node=1, melts=2, float=1},
sunlight_propagates = true,
--Disable placement prediction for snow.

View File

@ -48,7 +48,7 @@ local function loadConfig(path)
io.close(file)
for line in io.lines(path) do
if line:sub(1,1) ~= "#" then
i, v = line:match("^(%S*) = (%S*)")
local i, v = line:match("^(%S*) = (%S*)")
if i and v then
if v == "true" then v = true end
if v == "false" then v = false end