Fixed it so that setting the altar to display tier 1 actually works.

This commit is contained in:
WayofTime 2016-07-14 21:27:13 -04:00
parent ad6567c5d6
commit b31ff082e9
2 changed files with 2 additions and 2 deletions

View file

@ -6,6 +6,7 @@ Version 2.0.3-51
- Fixed it so that the Crushing Ritual now ignores liquids - Fixed it so that the Crushing Ritual now ignores liquids
- Added the Mark of the Falling Tower ritual. - Added the Mark of the Falling Tower ritual.
- Changed the tooltip of the ritual diviner so that it gives information about the selected ritual. - Changed the tooltip of the ritual diviner so that it gives information about the selected ritual.
- Added more to the Sanguine Scientiem, including Hellfire Forge recipes and Altar recipes
------------------------------------------------------ ------------------------------------------------------
Version 2.0.2-50 Version 2.0.2-50

View file

@ -98,7 +98,6 @@ public class ItemSanguineBook extends Item implements IVariantProvider, IAltarMa
TileEntity tile = world.getTileEntity(pos); TileEntity tile = world.getTileEntity(pos);
if (tile instanceof TileAltar) if (tile instanceof TileAltar)
{ {
if (currentDisplayedTier != EnumAltarTier.ONE)
return !((TileAltar) tile).setCurrentTierDisplayed(currentDisplayedTier); return !((TileAltar) tile).setCurrentTierDisplayed(currentDisplayedTier);
} }