Corrected Wood Plates burn value
This commit is contained in:
parent
d61667d436
commit
f708fc5ff8
1 changed files with 3 additions and 0 deletions
|
@ -1725,6 +1725,9 @@ public abstract class GT_Proxy implements IGT_Mod, IGuiHandler, IFuelHandler {
|
||||||
if (GT_OreDictUnificator.isItemStackInstanceOf(aFuel, "dustTinyWood")) {
|
if (GT_OreDictUnificator.isItemStackInstanceOf(aFuel, "dustTinyWood")) {
|
||||||
rFuelValue = (short) Math.max(rFuelValue, 11);
|
rFuelValue = (short) Math.max(rFuelValue, 11);
|
||||||
}
|
}
|
||||||
|
if (GT_OreDictUnificator.isItemStackInstanceOf(aFuel, "plateWood")) {
|
||||||
|
rFuelValue = (short) Math.min(rFuelValue, 300);
|
||||||
|
}
|
||||||
if (GT_Utility.areStacksEqual(aFuel, new ItemStack(Blocks.wooden_button, 1))) {
|
if (GT_Utility.areStacksEqual(aFuel, new ItemStack(Blocks.wooden_button, 1))) {
|
||||||
rFuelValue = (short) Math.max(rFuelValue, 150);
|
rFuelValue = (short) Math.max(rFuelValue, 150);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue