From 44f40664da5c86c0a2179dad030bec250ac41897 Mon Sep 17 00:00:00 2001 From: Thomas Rudin Date: Fri, 25 Jan 2019 21:27:31 +0100 Subject: [PATCH] quarry depth limit --- 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 4922c85..2f56c3a 100644 --- a/technic/machines/HV/quarry.lua +++ b/technic/machines/HV/quarry.lua @@ -13,7 +13,7 @@ minetest.register_craft({ }) local quarry_dig_above_nodes = 3 -- How far above the quarry we will dig nodes -local quarry_max_depth = 100 +local quarry_max_depth = 30 local quarry_demand = 10000 local quarry_eject_dir = vector.new(0, 1, 0)