Fixed the BlastFurnace

This commit is contained in:
modmuss50 2015-07-20 15:19:23 +01:00
parent 29398d50dd
commit 462aa20710
4 changed files with 76 additions and 17 deletions

View file

@ -33,7 +33,7 @@ public class BlastFurnaceRecipe extends BaseRecipe {
public boolean canCraft(TileEntity tile) {
if(tile instanceof TileBlastFurnace){
TileBlastFurnace blastFurnace = (TileBlastFurnace) tile;
return blastFurnace.getHeat() >- neededHeat;
return blastFurnace.getHeat() >= neededHeat;
}
return false;
}