diff --git a/changelog.txt b/changelog.txt index b9412c01..9a4552f2 100644 --- a/changelog.txt +++ b/changelog.txt @@ -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 diff --git a/src/main/java/WayofTime/bloodmagic/item/ItemSanguineBook.java b/src/main/java/WayofTime/bloodmagic/item/ItemSanguineBook.java index 39f1507d..62160f90 100644 --- a/src/main/java/WayofTime/bloodmagic/item/ItemSanguineBook.java +++ b/src/main/java/WayofTime/bloodmagic/item/ItemSanguineBook.java @@ -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;