Fixed Blood Altar resetting when clicked with an item.

This commit is contained in:
WayofTime 2016-02-11 15:56:08 -05:00
parent c6b446faf9
commit 460df89e10
2 changed files with 6 additions and 1 deletions

View file

@ -4,6 +4,8 @@ Version 2.0.0-17
- Added Living Armour Upgrades
- Solar Powered
- Grim Reaper's Sprint
- Fixed Blood Altar's progress resetting when clicking with another item
- Fixed Divination and Seer sigils crashing when clicking on an altar while not bound
------------------------------------------------------
Version 2.0.0-16

View file

@ -689,9 +689,12 @@ public class BloodAltar implements IFluidHandler
}
public void setActive()
{
if (tileAltar.getStackInSlot(0) == null)
{
isActive = false;
}
}
public boolean isActive()
{