Revert "now sends error messages to player"

This reverts commit eca1e31ab5.
master
Gabriel Pérez-Cerezo 2016-10-09 23:46:01 +02:00
parent e399c50d4c
commit 56b4bb6084
No known key found for this signature in database
GPG Key ID: 90422B01A46D0B3E
1 changed files with 7 additions and 10 deletions

View File

@ -28,10 +28,7 @@ local function fetch_lift(pos, node, clicker, rel, i, open_door, plus)
local snode = get_far_node({x=pos.x-1, y=pos.y+i, z=pos.z})
local anode = get_far_node({x=pos.x, y=pos.y+i, z=pos.z+1})
local dnode = get_far_node({x=pos.x, y=pos.y+i, z=pos.z-1})
local name = clicker:get_player_name()
if not name then
return
end
if wnode.name ~= "lifter:lift" and snode.name ~= "lifter:lift" and
anode.name ~= "lifter:lift" and dnode.name ~= "lifter:lift" then
@ -39,13 +36,13 @@ local function fetch_lift(pos, node, clicker, rel, i, open_door, plus)
anode.name ~= "air" and dnode.name ~= "air" and
wnode.name ~= "bones:bones" and snode.name ~= "bones:bones" and
anode.name ~= "bones:bones" and dnode.name ~= "bones:bones"then
minetest.chat_send_player(name, "lift not found, no air")
print("lift not found, no air")
return
end
local test = minetest.find_nodes_in_area({x=pos.x-2, y=pos.y+i, z=pos.z-2}, {x=pos.x+2, y=pos.y+i, z=pos.z+2}, "air")
if #test == 9 then
minetest.chat_send_player(name, "lift not found, too much air")
print("lift not found, too much air")
return
end
@ -61,7 +58,7 @@ local function fetch_lift(pos, node, clicker, rel, i, open_door, plus)
minetest.remove_node({x=pos.x+1, y=pos.y+i, z=pos.z})
minetest.add_node({x=pos.x+1, y=pos.y+rel, z=pos.z}, {name="lifter:lift"})
else
minetest.chat_send_player(name, "lift blocked")
print("lift blocked")
end
end
if snode.name == "lifter:lift" then
@ -70,7 +67,7 @@ local function fetch_lift(pos, node, clicker, rel, i, open_door, plus)
minetest.remove_node({x=pos.x-1, y=pos.y+i, z=pos.z})
minetest.add_node({x=pos.x-1, y=pos.y+rel, z=pos.z}, {name="lifter:lift"})
else
minetest.chat_send_player(name, "lift blocked")
print("lift blocked")
end
end
if anode.name == "lifter:lift" then
@ -79,7 +76,7 @@ local function fetch_lift(pos, node, clicker, rel, i, open_door, plus)
minetest.remove_node({x=pos.x, y=pos.y+i, z=pos.z+1})
minetest.add_node({x=pos.x, y=pos.y+rel, z=pos.z+1}, {name="lifter:lift"})
else
minetest.chat_send_player(name, "lift blocked")
print("lift blocked")
end
end
if dnode.name == "lifter:lift" then
@ -88,7 +85,7 @@ local function fetch_lift(pos, node, clicker, rel, i, open_door, plus)
minetest.remove_node({x=pos.x, y=pos.y+i, z=pos.z-1})
minetest.add_node({x=pos.x, y=pos.y+rel, z=pos.z-1}, {name="lifter:lift"})
else
minetest.chat_send_player(name, "lift blocked")
print("lift blocked")
end
end
open_door(pos,node,clicker)