Merge pull request #2478 from Fyrstikkeske/master

Retain unused progress for the next craft on the blast furnace
This commit is contained in:
HbmMods 2025-10-21 22:06:15 +02:00 committed by GitHub
commit 38cd74536d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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