Low tier altars should not be able to fill high tier orbs

This commit is contained in:
Nicholas Ignoffo 2018-08-26 13:12:49 -07:00
parent 1f392721fa
commit 70cf5d2bea

View file

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