Allowed drills to output multiple items per frame

This commit is contained in:
Anuken
2025-02-02 10:54:51 -05:00
parent 18b78f4bf6
commit c6d82bec66

View File

@@ -315,7 +315,10 @@ public class Drill extends Block{
}
if(dominantItems > 0 && progress >= delay && items.total() < itemCapacity){
offload(dominantItem);
int amount = (int)(progress / delay);
for(int i = 0; i < amount; i++){
offload(dominantItem);
}
progress %= delay;