diff options
author | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-05-03 23:52:01 +0300 |
---|---|---|
committer | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-05-03 23:52:01 +0300 |
commit | 7817204fb26da4cc3538695c9a178a50c33ee567 (patch) | |
tree | d23c63ed65013ed7d86184d8c2b4c026b798fcc8 | |
parent | d93916f77255d4bb40ef5863256da7987e4eefb1 (diff) |
saw protection
-rw-r--r-- | technic/tools/chainsaw.lua | 2 | ||||
-rw-r--r-- | technic/tools/planter.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/technic/tools/chainsaw.lua b/technic/tools/chainsaw.lua index 39423fb..2b63281 100644 --- a/technic/tools/chainsaw.lua +++ b/technic/tools/chainsaw.lua @@ -445,7 +445,7 @@ local function nonrecursive_dig(pos, remaining_charge, username) end local p = {x = pos.x + offset.x, y = pos.y + y, z = pos.z + offset.z} local n = minetest.get_node(p) - if timber_nodenames[n.name] then + if timber_nodenames[n.name] and not minetest.is_protected(pos, username) then -- Wood found - cut it handle_drops(minetest.get_node_drops(n.name)) minetest.remove_node(p) diff --git a/technic/tools/planter.lua b/technic/tools/planter.lua index 0b1a2fe..fc3e1ec 100644 --- a/technic/tools/planter.lua +++ b/technic/tools/planter.lua @@ -7,7 +7,7 @@ -- Configuration -- Intended to hold as much as the chainsaw, 20000 units local planter_max_charge = 20000 --- Can remove a curious number of objects +-- Cost of planting action local planter_charge_per_object = 25 |