mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-26 00:38:35 +01:00
Hopefully fixed a Miner Bug
This commit is contained in:
parent
57c37cb900
commit
8be363ba08
1 changed files with 19 additions and 16 deletions
|
@ -126,6 +126,7 @@ public class TileEntityMiner extends TileEntityInventoryBase implements IEnergyR
|
|||
}
|
||||
|
||||
private boolean isMinable(Block block, int meta){
|
||||
if(block != null){
|
||||
if(!this.isBlacklisted(block)){
|
||||
if(!this.onlyMineOres){
|
||||
return true;
|
||||
|
@ -149,6 +150,8 @@ public class TileEntityMiner extends TileEntityInventoryBase implements IEnergyR
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue