testing almost done

This commit is contained in:
Vanessa Ezekowitz 2012-10-09 05:36:25 -04:00
parent b04cae0161
commit ec21a17e7d
1 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@ minetest.register_node("homedecor:door_wood_plain_bottom_left", {
local pos = pointed_thing.above
local pd = true
if type(IsPlayerNodeOwner)=="function" then
if not IsPlayerNodeOwner(pos, placer:get_player_name()) and getLastOwner(pos) ~= "< Unknown >" then
if not IsPlayerNodeOwner(pos, placer:get_player_name()) and HasOwner(pos) then
minetest.chat_send_player( placer:get_player_name(), "Sorry, "..getLastOwner(pos).." owns that spot." )
pd = false
end
@ -175,7 +175,7 @@ minetest.register_node("homedecor:door_wood_plain_bottom_right", {
local pos = pointed_thing.above
local pd = true
if type(IsPlayerNodeOwner)=="function" then
if not IsPlayerNodeOwner(pos, placer:get_player_name()) and getLastOwner(pos) ~= "< Unknown >" then
if not IsPlayerNodeOwner(pos, placer:get_player_name()) and HasOwner(pos) then
minetest.chat_send_player( placer:get_player_name(), "Sorry, "..getLastOwner(pos).." owns that spot." )
pd = false
end