diff options
author | Dimach <dimach2142@gmail.com> | 2017-07-06 14:45:41 +0300 |
---|---|---|
committer | Dimach <dimach2142@gmail.com> | 2017-07-06 17:56:43 +0300 |
commit | 480132b25f85bb350b04e949174ebc9ade85f185 (patch) | |
tree | f42f5cfc80e203d48823edff37919743cc9d53c4 | |
parent | 0375e11debad5b9c997a91da3d07f85e37dc0616 (diff) | |
download | GT5-Unofficial-480132b25f85bb350b04e949174ebc9ade85f185.tar.gz GT5-Unofficial-480132b25f85bb350b04e949174ebc9ade85f185.tar.bz2 GT5-Unofficial-480132b25f85bb350b04e949174ebc9ade85f185.zip |
Changed miner rates.
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/basic/GT_MetaTileEntity_Miner.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/basic/GT_MetaTileEntity_Miner.java b/src/main/java/gregtech/common/tileentities/machines/basic/GT_MetaTileEntity_Miner.java index d529cefdae..13f16a2b99 100644 --- a/src/main/java/gregtech/common/tileentities/machines/basic/GT_MetaTileEntity_Miner.java +++ b/src/main/java/gregtech/common/tileentities/machines/basic/GT_MetaTileEntity_Miner.java @@ -29,8 +29,8 @@ public class GT_MetaTileEntity_Miner extends GT_MetaTileEntity_BasicMachine { boolean isPickingPipes; boolean waitMiningPipe; 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[] ENERGY = new int[]{24, 24, 96, 384}; //Miner energy consumption per tier + final static int[] SPEED = new int[]{160, 160, 80, 40}; //Miner cycle time per tier + final static int[] ENERGY = new int[]{8, 8, 32, 128}; //Miner energy consumption per tier public GT_MetaTileEntity_Miner(int aID, String aName, String aNameRegional, int aTier) { super(aID, aName, aNameRegional, aTier, 1, "Digging ore instead of you", 2, 2, "Miner.png", "", new GT_RenderedTexture(new Textures.BlockIcons.CustomIcon("basicmachines/miner/OVERLAY_SIDE_ACTIVE")), new GT_RenderedTexture(new Textures.BlockIcons.CustomIcon("basicmachines/miner/OVERLAY_SIDE")), new GT_RenderedTexture(new Textures.BlockIcons.CustomIcon("basicmachines/miner/OVERLAY_FRONT_ACTIVE")), new GT_RenderedTexture(new Textures.BlockIcons.CustomIcon("basicmachines/miner/OVERLAY_FRONT")), new GT_RenderedTexture(new Textures.BlockIcons.CustomIcon("basicmachines/miner/OVERLAY_TOP_ACTIVE")), new GT_RenderedTexture(new Textures.BlockIcons.CustomIcon("basicmachines/miner/OVERLAY_TOP")), new GT_RenderedTexture(new Textures.BlockIcons.CustomIcon("basicmachines/miner/OVERLAY_BOTTOM_ACTIVE")), new GT_RenderedTexture(new Textures.BlockIcons.CustomIcon("basicmachines/miner/OVERLAY_BOTTOM"))); |