From fd2844ea441b55160b54f330e2fe6b9fcbe013da Mon Sep 17 00:00:00 2001 From: OgelGames Date: Mon, 13 Feb 2023 21:28:31 +1100 Subject: [PATCH] purge quarry every 99 digs instead of 100 so only one stack needs to be ejected when digging through a single material thanks Huhhila :) --- 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 8155bf3..cda1c1c 100644 --- a/technic/machines/HV/quarry.lua +++ b/technic/machines/HV/quarry.lua @@ -193,7 +193,7 @@ local function do_digging(pos, meta, net_time) end end dug = dug + 1 - if full or dug % 100 == 0 then + if full or dug % 99 == 0 then -- Time to purge the cache meta:set_int("purge_on", 1) end