Fixed lit redstone ore not being picked up.

This commit is contained in:
WayofTime 2016-01-09 16:43:32 -05:00
parent 487332ff8d
commit db8586d4b7

View file

@ -42,12 +42,15 @@ public class RitualMagnetic extends Ritual
public static boolean isBlockOre(Block block, int meta)
{
if (block == null || Item.getItemFromBlock(block) == null)
if (block == null)
return false;
if (block instanceof BlockOre || block instanceof BlockRedstoneOre)
return true;
if (Item.getItemFromBlock(block) == null)
return false;
BlockStack type = new BlockStack(block, meta);
Boolean result = oreBlockCache.get(type);
if (result == null)