Now shows the heat of the multiblock

This commit is contained in:
modmuss50 2015-04-26 16:22:26 +01:00
parent d70038b77f
commit db62b7a8b8
4 changed files with 136 additions and 123 deletions

View file

@ -90,4 +90,16 @@ public class BlockMachineCasing extends BlockMultiblockBase {
{
return new TileMachineCasing();
}
public static int getHeatFromMeta(int meta){
switch (meta){
case 0:
return 1020;
case 1:
return 1700;
case 2:
return 2380;
}
return 0;
}
}