Changes the way heat is calculated.

This commit is contained in:
modmuss50 2015-08-10 14:32:01 +01:00
parent 404bbf6797
commit fb33dda932
4 changed files with 125 additions and 118 deletions

View file

@ -82,11 +82,11 @@ public class BlockMachineCasing extends BlockMultiblockBase {
public static int getHeatFromMeta(int meta) {
switch (meta) {
case 0:
return 1020;
return 1020 / 25;
case 1:
return 1700;
return 1700 / 25;
case 2:
return 2380;
return 2380 / 25;
}
return 0;
}