show when protection tool trying to place out of bounds or near bedrock

This commit is contained in:
tenplus1 2024-09-29 08:46:48 +01:00
parent 72f4e36b7b
commit 04ef9e3432

View File

@ -83,6 +83,9 @@ minetest.register_craftitem("protector:tool", {
-- do not place protector out of map bounds -- do not place protector out of map bounds
if minetest.find_node_near(pos, 1, {"ignore", "mcl_core:bedrock"}) then if minetest.find_node_near(pos, 1, {"ignore", "mcl_core:bedrock"}) then
minetest.chat_send_player(name, S("Out of bounds!"))
return return
end end