Changed MV miner radius.

This commit is contained in:
Dimach 2017-07-06 14:35:33 +03:00
parent 0334a19993
commit 0375e11deb

View file

@ -28,7 +28,7 @@ public class GT_MetaTileEntity_Miner extends GT_MetaTileEntity_BasicMachine {
int drillX, drillY, drillZ; int drillX, drillY, drillZ;
boolean isPickingPipes; boolean isPickingPipes;
boolean waitMiningPipe; boolean waitMiningPipe;
final static int[] RADIUS = new int[]{8, 8, 24, 40}; //Miner radius per tier final static int[] RADIUS = new int[]{8, 8, 16, 24}; //Miner radius per tier
final static int[] SPEED = new int[]{200, 200, 100, 50}; //Miner cycle time per tier final static int[] SPEED = new int[]{200, 200, 100, 50}; //Miner cycle time per tier
final static int[] ENERGY = new int[]{24, 24, 96, 384}; //Miner energy consumption per tier final static int[] ENERGY = new int[]{24, 24, 96, 384}; //Miner energy consumption per tier