summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTenPlus1 <kinsellaja@yahoo.com>2017-06-02 21:06:00 +0100
committerTenPlus1 <kinsellaja@yahoo.com>2017-06-02 21:06:00 +0100
commit8161d03c39d7699a3e08ba53b664ff2101b21db9 (patch)
treeaeb74402c3ee3cbf4f2a110b0d5ef6950d9372a4
parentf8eab51e67ecfc6a2fd66b88e8fdd0c6a9ef7c23 (diff)
protector.drop feature removed, can easily be exploited using lag
-rw-r--r--init.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/init.lua b/init.lua
index 13956ac..676a561 100644
--- a/init.lua
+++ b/init.lua
@@ -7,7 +7,7 @@
protector = {}
protector.mod = "redo"
protector.radius = tonumber(minetest.setting_get("protector_radius")) or 5
-protector.drop = minetest.setting_getbool("protector_drop") or false
+--protector.drop = minetest.setting_getbool("protector_drop") or false
protector.flip = minetest.setting_getbool("protector_flip") or false
protector.hurt = tonumber(minetest.setting_get("protector_hurt")) or 0
protector.spawn = tonumber(minetest.setting_get("protector_spawn")
@@ -307,7 +307,7 @@ function minetest.is_protected(pos, digger)
})
end
end
-
+--[[
-- drop tool/item if protection violated
if protector.drop == true then
@@ -332,7 +332,7 @@ function minetest.is_protected(pos, digger)
end
end
end
-
+]]
return true
end