mirror of
https://github.com/mt-mods/homedecor_modpack.git
synced 2024-12-22 16:10:18 +01:00
The previous tests were a success, now to do the same thing for glomie's
protection mod.
This commit is contained in:
parent
a7a2e11b7e
commit
340cc7dfb1
@ -114,6 +114,12 @@ minetest.register_node("homedecor:door_closet_oak_bottom_left", {
|
||||
pd = false
|
||||
end
|
||||
end
|
||||
if type(isprotect)=="function" then
|
||||
pd = isprotect(5, pos, placer:get_player_name())
|
||||
if not pd then
|
||||
minetest.chat_send_player( placer:get_player_name(), "Sorry, someone owns that spot." )
|
||||
end
|
||||
end
|
||||
if pd then
|
||||
fdir = minetest.dir_to_facedir(placer:get_look_dir())
|
||||
if minetest.env:get_node({x=pos.x, y=pos.y+1, z=pos.z}).name ~= "air" then
|
||||
@ -252,6 +258,12 @@ minetest.register_node("homedecor:door_closet_oak_bottom_right", {
|
||||
pd = false
|
||||
end
|
||||
end
|
||||
if type(isprotect)=="function" then
|
||||
pd = isprotect(5, pos, placer:get_player_name())
|
||||
if not pd then
|
||||
minetest.chat_send_player( placer:get_player_name(), "Sorry, someone owns that spot." )
|
||||
end
|
||||
end
|
||||
if pd then
|
||||
fdir = minetest.dir_to_facedir(placer:get_look_dir())
|
||||
if minetest.env:get_node({x=pos.x, y=pos.y+1, z=pos.z}).name ~= "air" then
|
||||
|
Loading…
Reference in New Issue
Block a user