Fix crash when mining BlockMultipart with Atomic Disassembler

This commit is contained in:
Daniel Schubert 2014-06-19 13:30:51 +02:00
parent 90da466ca1
commit df8d651c5d

View file

@ -20,6 +20,11 @@ public final class OreDictCache
public static List<String> getOreDictName(ItemStack check)
{
if (check == null || check.getItem() == null)
{
return new ArrayList<String>();
}
ItemInfo info = ItemInfo.get(check);
if(cachedKeys.get(info) != null)