Miner is in Ores Mode by default so that it doesn't wreck as much when you place it down while it has energy.

//oh lovely workarounds
This commit is contained in:
Ellpeck 2015-12-27 15:44:16 +01:00
parent eedad2e33d
commit 8245e3cb8f

View file

@ -35,7 +35,7 @@ public class TileEntityMiner extends TileEntityInventoryBase implements IEnergyR
public static final int ENERGY_USE_PER_BLOCK = 500;
public EnergyStorage storage = new EnergyStorage(1000000);
public int layerAt = -1;
public boolean onlyMineOres;
public boolean onlyMineOres = true;
private int oldLayerAt;
private int oldEnergy;