Merge pull request #160 from Alex-hawks/master

Change Rituals to allow for TileEntity Runes, and Hybrid Runes
This commit is contained in:
WayofTime 2014-11-22 10:00:23 -05:00
commit f138a8347e
4 changed files with 23 additions and 27 deletions

View file

@ -120,8 +120,8 @@ public class RitualStone extends Block implements IRitualStone
}
@Override
public int getRuneType(World world, int x, int y, int z, int meta)
public boolean isRuneType(World world, int x, int y, int z, int meta, int runeType)
{
return meta;
return meta == runeType;
}
}