Replace minetest.env: with minetest.

This commit is contained in:
PilzAdam 2013-05-25 00:40:03 +02:00
parent dfad095884
commit 31a74ede18
13 changed files with 169 additions and 169 deletions

View file

@ -105,7 +105,7 @@ function stairs.register_slab(subname, recipeitem, groups, images, description,
local slabnode = nil
local p0 = pointed_thing.under
local p1 = pointed_thing.above
local n0 = minetest.env:get_node(p0)
local n0 = minetest.get_node(p0)
if n0.name == "stairs:slab_" .. subname and
p0.y+1 == p1.y then
slabpos = p0
@ -113,7 +113,7 @@ function stairs.register_slab(subname, recipeitem, groups, images, description,
end
if slabpos then
-- Remove the slab at slabpos
minetest.env:remove_node(slabpos)
minetest.remove_node(slabpos)
-- Make a fake stack of a single item and try to place it
local fakestack = ItemStack(recipeitem)
pointed_thing.above = slabpos
@ -123,7 +123,7 @@ function stairs.register_slab(subname, recipeitem, groups, images, description,
itemstack:take_item(1)
-- Else put old node back
else
minetest.env:set_node(slabpos, slabnode)
minetest.set_node(slabpos, slabnode)
end
return itemstack
end
@ -133,7 +133,7 @@ function stairs.register_slab(subname, recipeitem, groups, images, description,
-- Turn into full block if pointing at a existing slab
if n0.name == "stairs:slab_" .. subname.."upside_down" then
-- Remove the slab at the position of the slab
minetest.env:remove_node(p0)
minetest.remove_node(p0)
-- Make a fake stack of a single item and try to place it
local fakestack = ItemStack(recipeitem)
pointed_thing.above = p0
@ -143,7 +143,7 @@ function stairs.register_slab(subname, recipeitem, groups, images, description,
itemstack:take_item(1)
-- Else put old node back
else
minetest.env:set_node(p0, n0)
minetest.set_node(p0, n0)
end
return itemstack
end