Retain unused progress for the next craft

fixes some alignment issues when minmaxxing the blast furnace.
This commit is contained in:
Fyrstikkeske 2025-10-10 00:35:13 +02:00
parent db3f58b4cd
commit 6f7a23d8cc

View File

@ -203,7 +203,7 @@ public class TileEntityDiFurnace extends TileEntityMachinePolluting implements I
progress += extension ? 3 : 1;
if(this.progress >= TileEntityDiFurnace.processingSpeed) {
this.progress = 0;
this.progress -= TileEntityDiFurnace.processingSpeed; // look mom, ive finally added something to a popular project
this.processItem();
markDirty = true;
}