Change hopper minecart delay to 0.25 seconds from 0.05 seconds

This commit is contained in:
teknomunk 2025-01-12 09:15:31 -06:00 committed by the-real-herowl
parent 53e1546219
commit c72ff616ab

View file

@ -165,7 +165,7 @@ mod.register_minecart({
local above_pos = vector.offset(pos,0,1,0)
mcl_util.hopper_pull_to_inventory(inv, 'main', above_pos, pos)
staticdata.hopper_delay = (staticdata.hopper_delay or 0) + (1/20)
staticdata.hopper_delay = (staticdata.hopper_delay or 0) + 0.25
end,
_mcl_minecarts_on_step = function(self, dtime)
hopper_take_item(self, dtime)