Low tier altars should not be able to fill high tier orbs
This commit is contained in:
parent
1f392721fa
commit
70cf5d2bea
|
@ -197,8 +197,8 @@ public class BloodAltar implements IFluidHandler
|
||||||
}
|
}
|
||||||
} else if (input.getItem() instanceof IBloodOrb)
|
} else if (input.getItem() instanceof IBloodOrb)
|
||||||
{
|
{
|
||||||
this.isActive = true;
|
BloodOrb orb = ((IBloodOrb) input.getItem()).getOrb(input);
|
||||||
this.canBeFilled = true;
|
this.isActive = canBeFilled = orb != null && altarTier.ordinal() >= orb.getTier();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue