Fix obo causing altars to not fill orbs of the same tier (#1423)
This commit is contained in:
parent
6ba4a02c48
commit
39087ccf70
1 changed files with 1 additions and 1 deletions
|
@ -198,7 +198,7 @@ public class BloodAltar implements IFluidHandler
|
||||||
} else if (input.getItem() instanceof IBloodOrb)
|
} else if (input.getItem() instanceof IBloodOrb)
|
||||||
{
|
{
|
||||||
BloodOrb orb = ((IBloodOrb) input.getItem()).getOrb(input);
|
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;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue