Add some more null checks to Drill's block harvesting.

Should close #175
This commit is contained in:
Ellpeck 2016-07-27 02:01:15 +02:00
parent f96c60f0bb
commit 1418d6fb7f

View file

@ -501,11 +501,16 @@ public class ItemDrill extends ItemEnergy{
} }
private boolean hasExtraWhitelist(Block block){ private boolean hasExtraWhitelist(Block block){
String name = block.getRegistryName().toString(); if(block != null){
if(name != null){ ResourceLocation location = block.getRegistryName();
for(String list : ConfigStringListValues.DRILL_EXTRA_MINING_WHITELIST.getValue()){ if(location != null){
if(list.equals(name)){ String name = location.toString();
return true; if(name != null){
for(String s : ConfigStringListValues.DRILL_EXTRA_MINING_WHITELIST.getValue()){
if(s != null && s.equals(name)){
return true;
}
}
} }
} }
} }