From 458f23b9293791ac6077753a954f25e78aa044b6 Mon Sep 17 00:00:00 2001 From: Thomas Rudin Date: Tue, 4 Jun 2019 05:56:00 +0200 Subject: [PATCH] limit quarry depth --- technic/machines/HV/quarry.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/technic/machines/HV/quarry.lua b/technic/machines/HV/quarry.lua index ed4e7a5..6db33a2 100644 --- a/technic/machines/HV/quarry.lua +++ b/technic/machines/HV/quarry.lua @@ -14,7 +14,7 @@ minetest.register_craft({ }) local quarry_dig_above_nodes = 3 -- How far above the quarry we will dig nodes -local quarry_max_depth = 80 +local quarry_max_depth = 40 local quarry_demand = 10000 local quarry_eject_dir = vector.new(0, 1, 0)