Burning through cake

- Superheated burn time of blaze cakes changed from 1000 to 3200 ticks
- Blaze cake insertion threshold matched to standard threshold
This commit is contained in:
simibubi 2023-01-14 14:08:08 +01:00
parent f62815547e
commit b502cd1c16

View file

@ -36,7 +36,7 @@ public class BlazeBurnerTileEntity extends SmartTileEntity {
public static final int MAX_HEAT_CAPACITY = 10000;
public static final int INSERTION_THRESHOLD = 500;
public static final int SPECIAL_INSERTION_THRESHOLD = 100;
public static final int SPECIAL_INSERTION_THRESHOLD = 500;
protected FuelType activeFuel;
protected int remainingBurnTime;
@ -191,7 +191,7 @@ public class BlazeBurnerTileEntity extends SmartTileEntity {
int newBurnTime;
if (AllItemTags.BLAZE_BURNER_FUEL_SPECIAL.matches(itemStack)) {
newBurnTime = 1000;
newBurnTime = 3200;
newFuel = FuelType.SPECIAL;
} else {
newBurnTime = ForgeHooks.getBurnTime(itemStack, null);