change Tier and values

Q Chest, S Chest, Q Tank, S Tank
This commit is contained in:
Dream-Master 2017-01-17 22:06:31 +01:00
parent a0057a081c
commit 580c31a0a1
4 changed files with 24 additions and 20 deletions

View file

@ -165,16 +165,16 @@ public class GT_MetaTileEntity_QuantumChest extends GT_MetaTileEntity_TieredMach
private static int CommonSizeCompute(int tier){ private static int CommonSizeCompute(int tier){
switch(tier){ switch(tier){
case 5:
return 0;
case 6: case 6:
return 0; return 128000000;
case 7: case 7:
return 0; return 256000000;
case 8: case 8:
return 0; return 512000000;
case 9: case 9:
return 0; return 1024000000;
case 10:
return 2147483640;
default: default:
return 0; return 0;
} }

View file

@ -130,16 +130,16 @@ public class GT_MetaTileEntity_QuantumTank
private static int CommonSizeCompute(int tier){ private static int CommonSizeCompute(int tier){
switch(tier){ switch(tier){
case 5:
return 0;
case 6: case 6:
return 0; return 128000000;
case 7: case 7:
return 0; return 256000000;
case 8: case 8:
return 0; return 512000000;
case 9: case 9:
return 0; return 1024000000;
case 10:
return 2147483640;
default: default:
return 0; return 0;
} }

View file

@ -166,13 +166,15 @@ public class GT_MetaTileEntity_SuperChest extends GT_MetaTileEntity_TieredMachin
private static int CommonSizeCompute(int tier){ private static int CommonSizeCompute(int tier){
switch(tier){ switch(tier){
case 1: case 1:
return 0; return 4000000;
case 2: case 2:
return 0; return 8000000;
case 3: case 3:
return 0; return 16000000;
case 4: case 4:
return 0; return 32000000;
case 5:
return 64000000;
default: default:
return 0; return 0;
} }

View file

@ -131,13 +131,15 @@ public class GT_MetaTileEntity_SuperTank
private static int CommonSizeCompute(int tier){ private static int CommonSizeCompute(int tier){
switch(tier){ switch(tier){
case 1: case 1:
return 0; return 4000000;
case 2: case 2:
return 0; return 8000000;
case 3: case 3:
return 0; return 16000000;
case 4: case 4:
return 0; return 32000000;
case 5:
return 64000000;
default: default:
return 0; return 0;
} }