Make hopper minecart pull items from containers when stopped

This commit is contained in:
teknomunk 2025-01-11 08:12:20 -06:00 committed by the-real-herowl
parent 74de26b3c8
commit e08505d24d

View file

@ -169,6 +169,11 @@ mod.register_minecart({
end,
_mcl_minecarts_on_step = function(self, dtime)
hopper_take_item(self, dtime)
local staticdata = self._staticdata
local pos = mcl_minecarts.get_cart_position(staticdata)
self._mcl_minecarts_on_enter(self, pos, staticdata)
end,
creative = true
})