From 2a5e2787bb1592b286230da06fd1ddbccc02c6ca Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Mon, 25 Jul 2016 14:18:05 +0200 Subject: [PATCH] Made the Miner use more power again because people were complaining. Again. --- .../ellpeck/actuallyadditions/mod/tile/TileEntityMiner.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/de/ellpeck/actuallyadditions/mod/tile/TileEntityMiner.java b/src/main/java/de/ellpeck/actuallyadditions/mod/tile/TileEntityMiner.java index 80a95e1d8..e9788b0c2 100644 --- a/src/main/java/de/ellpeck/actuallyadditions/mod/tile/TileEntityMiner.java +++ b/src/main/java/de/ellpeck/actuallyadditions/mod/tile/TileEntityMiner.java @@ -37,7 +37,7 @@ import java.util.List; public class TileEntityMiner extends TileEntityInventoryBase implements IEnergyReceiver, IButtonReactor, IEnergyDisplay{ - public static final int ENERGY_USE_PER_BLOCK = 1000; + public static final int ENERGY_USE_PER_BLOCK = 1500; public static final int DEFAULT_RANGE = 2; public final EnergyStorage storage = new EnergyStorage(200000); public int layerAt = -1; @@ -98,7 +98,7 @@ public class TileEntityMiner extends TileEntityInventoryBase implements IEnergyR private boolean mine(int range){ for(int anX = -range; anX <= range; anX++){ for(int aZ = -range; aZ <= range; aZ++){ - int actualUse = ENERGY_USE_PER_BLOCK*(this.onlyMineOres ? 3 : 1); + int actualUse = ENERGY_USE_PER_BLOCK*(this.onlyMineOres ? 5 : 1); if(this.storage.getEnergyStored() >= actualUse){ BlockPos pos = new BlockPos(this.pos.getX()+anX, this.layerAt, this.pos.getZ()+aZ);