Fixed it so that setting the altar to display tier 1 actually works.
This commit is contained in:
parent
ad6567c5d6
commit
b31ff082e9
|
@ -6,6 +6,7 @@ Version 2.0.3-51
|
|||
- Fixed it so that the Crushing Ritual now ignores liquids
|
||||
- Added the Mark of the Falling Tower 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
|
||||
|
|
|
@ -98,8 +98,7 @@ public class ItemSanguineBook extends Item implements IVariantProvider, IAltarMa
|
|||
TileEntity tile = world.getTileEntity(pos);
|
||||
if (tile instanceof TileAltar)
|
||||
{
|
||||
if (currentDisplayedTier != EnumAltarTier.ONE)
|
||||
return !((TileAltar) tile).setCurrentTierDisplayed(currentDisplayedTier);
|
||||
return !((TileAltar) tile).setCurrentTierDisplayed(currentDisplayedTier);
|
||||
}
|
||||
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue