Skip to content

Commit

Permalink
adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
70000hp committed Feb 11, 2025
1 parent 89fe899 commit 3a7e974
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,8 @@ public class TileEntityMachineRotaryFurnace extends TileEntityMachinePolluting i
.setSolidTimeMod(1.5)
.setBalefireTimeMod(1.5)

.setCokeHeatMod(1.25)
.setSolidHeatMod(1.5)
.setRocketHeatMod(2.5)
.setRocketHeatMod(3)
.setBalefireHeatMod(10);

public TileEntityMachineRotaryFurnace() {
Expand Down Expand Up @@ -140,7 +139,7 @@ public void updateEntity() {
float speed = Math.max((float) burnModule.getMod(lastFuel, burnModule.getModHeat()), 1);
this.progress += speed / recipe.duration;

speed = (float) Math.pow(speed, 1.5);
speed = (float)(13 * Math.log10(speed) + 1);
tanks[1].setFill((int) (tanks[1].getFill() - recipe.steam * speed));
tanks[2].setFill((int) (tanks[2].getFill() + recipe.steam * speed / 100));
this.isProgressing = true;
Expand Down

0 comments on commit 3a7e974

Please sign in to comment.