From 18fc18b5aece7aae1caafd38a2c742af7974348c Mon Sep 17 00:00:00 2001 From: Vanessa Dannenberg Date: Sun, 10 Mar 2019 19:44:56 -0400 Subject: update cottages, digilines, locks, maptools, moreblocks, technic, and travelnet --- technic/machines/HV/quarry.lua | 2 +- technic/tools/chainsaw.lua | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'technic') diff --git a/technic/machines/HV/quarry.lua b/technic/machines/HV/quarry.lua index b6f9c14..1671c4e 100644 --- a/technic/machines/HV/quarry.lua +++ b/technic/machines/HV/quarry.lua @@ -129,7 +129,7 @@ local function quarry_run(pos, node) vector.multiply(qdir, -radius)) local owner = meta:get_string("owner") local nd = meta:get_int("dug") - while nd ~= diameter*diameter * (quarry_dig_above_nodes+1+quarry_max_depth) do + while nd < diameter*diameter * (quarry_dig_above_nodes+1+quarry_max_depth) do local ry = math.floor(nd / (diameter*diameter)) local ndl = nd % (diameter*diameter) if ry % 2 == 1 then diff --git a/technic/tools/chainsaw.lua b/technic/tools/chainsaw.lua index 8245fd6..4b9ccfd 100644 --- a/technic/tools/chainsaw.lua +++ b/technic/tools/chainsaw.lua @@ -51,6 +51,7 @@ if minetest.get_modpath("moretrees") then timber_nodenames["moretrees:spruce_trunk"] = true timber_nodenames["moretrees:willow_trunk"] = true timber_nodenames["moretrees:jungletree_trunk"] = true + timber_nodenames["moretrees:poplar_trunk"] = true if chainsaw_leaves then timber_nodenames["moretrees:acacia_leaves"] = true @@ -75,6 +76,7 @@ if minetest.get_modpath("moretrees") then timber_nodenames["moretrees:pine_cone"] = true timber_nodenames["moretrees:fir_cone"] = true timber_nodenames["moretrees:apple_blossoms"] = true + timber_nodenames["moretrees:poplar_leaves"] = true end end -- cgit v1.2.3