Changes the way heat is calculated.
This commit is contained in:
parent
404bbf6797
commit
fb33dda932
4 changed files with 125 additions and 118 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue