mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-11-13 05:21:46 +01:00
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:
parent
f62815547e
commit
b502cd1c16
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue