change Tier and values
Q Chest, S Chest, Q Tank, S Tank
This commit is contained in:
parent
a0057a081c
commit
580c31a0a1
4 changed files with 24 additions and 20 deletions
|
@ -165,16 +165,16 @@ public class GT_MetaTileEntity_QuantumChest extends GT_MetaTileEntity_TieredMach
|
|||
|
||||
private static int CommonSizeCompute(int tier){
|
||||
switch(tier){
|
||||
case 5:
|
||||
return 0;
|
||||
case 6:
|
||||
return 0;
|
||||
return 128000000;
|
||||
case 7:
|
||||
return 0;
|
||||
return 256000000;
|
||||
case 8:
|
||||
return 0;
|
||||
return 512000000;
|
||||
case 9:
|
||||
return 0;
|
||||
return 1024000000;
|
||||
case 10:
|
||||
return 2147483640;
|
||||
default:
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -130,16 +130,16 @@ public class GT_MetaTileEntity_QuantumTank
|
|||
|
||||
private static int CommonSizeCompute(int tier){
|
||||
switch(tier){
|
||||
case 5:
|
||||
return 0;
|
||||
case 6:
|
||||
return 0;
|
||||
return 128000000;
|
||||
case 7:
|
||||
return 0;
|
||||
return 256000000;
|
||||
case 8:
|
||||
return 0;
|
||||
return 512000000;
|
||||
case 9:
|
||||
return 0;
|
||||
return 1024000000;
|
||||
case 10:
|
||||
return 2147483640;
|
||||
default:
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -166,13 +166,15 @@ public class GT_MetaTileEntity_SuperChest extends GT_MetaTileEntity_TieredMachin
|
|||
private static int CommonSizeCompute(int tier){
|
||||
switch(tier){
|
||||
case 1:
|
||||
return 0;
|
||||
return 4000000;
|
||||
case 2:
|
||||
return 0;
|
||||
return 8000000;
|
||||
case 3:
|
||||
return 0;
|
||||
return 16000000;
|
||||
case 4:
|
||||
return 0;
|
||||
return 32000000;
|
||||
case 5:
|
||||
return 64000000;
|
||||
default:
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -131,13 +131,15 @@ public class GT_MetaTileEntity_SuperTank
|
|||
private static int CommonSizeCompute(int tier){
|
||||
switch(tier){
|
||||
case 1:
|
||||
return 0;
|
||||
return 4000000;
|
||||
case 2:
|
||||
return 0;
|
||||
return 8000000;
|
||||
case 3:
|
||||
return 0;
|
||||
return 16000000;
|
||||
case 4:
|
||||
return 0;
|
||||
return 32000000;
|
||||
case 5:
|
||||
return 64000000;
|
||||
default:
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue