Some Heat Generator changes: bring other fuels into line with lava buckets and provide a large passive boost in the nether.
This commit is contained in:
parent
97c5e98d91
commit
e8769b4ffd
1 changed files with 3 additions and 1 deletions
|
@ -184,6 +184,8 @@ public class TileEntityHeatGenerator extends TileEntityGenerator implements IFlu
|
|||
boost+=5;
|
||||
if(worldObj.getBlockId(xCoord, yCoord, zCoord-1) == 10 || worldObj.getBlockId(xCoord, yCoord, zCoord-1) == 11)
|
||||
boost+=5;
|
||||
if(worldObj.provider.dimensionId == -1)
|
||||
boost+=100;
|
||||
|
||||
return boost;
|
||||
}
|
||||
|
@ -195,7 +197,7 @@ public class TileEntityHeatGenerator extends TileEntityGenerator implements IFlu
|
|||
return 1000;
|
||||
}
|
||||
|
||||
return TileEntityFurnace.getItemBurnTime(itemstack);
|
||||
return TileEntityFurnace.getItemBurnTime(itemstack)/20;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue