mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 23:28:35 +01:00
Fixed miner sometimes crashing when placed next to certain blocks
Closes #114
This commit is contained in:
parent
75d43d88b4
commit
12de298057
1 changed files with 15 additions and 12 deletions
|
@ -139,7 +139,9 @@ public class TileEntityMiner extends TileEntityInventoryBase implements IEnergyR
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
int[] ids = OreDictionary.getOreIDs(new ItemStack(block, 1, meta));
|
ItemStack stack = new ItemStack(block, 1, meta);
|
||||||
|
if(stack != null){
|
||||||
|
int[] ids = OreDictionary.getOreIDs(stack);
|
||||||
for(int id : ids){
|
for(int id : ids){
|
||||||
String name = OreDictionary.getOreName(id);
|
String name = OreDictionary.getOreName(id);
|
||||||
if(name.startsWith("ore") || name.startsWith("denseore")){
|
if(name.startsWith("ore") || name.startsWith("denseore")){
|
||||||
|
@ -158,6 +160,7 @@ public class TileEntityMiner extends TileEntityInventoryBase implements IEnergyR
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue