Fix obo causing altars to not fill orbs of the same tier (#1423)

This commit is contained in:
Nicholas Ignoffo 2018-08-27 21:30:03 -07:00
parent 6ba4a02c48
commit 39087ccf70

View file

@ -198,7 +198,7 @@ public class BloodAltar implements IFluidHandler
} else if (input.getItem() instanceof IBloodOrb)
{
BloodOrb orb = ((IBloodOrb) input.getItem()).getOrb(input);
this.isActive = canBeFilled = orb != null && altarTier.ordinal() >= orb.getTier();
this.isActive = canBeFilled = orb != null && altarTier.toInt() >= orb.getTier();
return;
}
}