mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-23 21:38:00 +01:00
Fixed selection arrow in the HUD
This commit is contained in:
parent
cab3477693
commit
cab6ef2375
1 changed files with 2 additions and 3 deletions
|
@ -123,8 +123,7 @@ public class UHud extends DrawableHelper {
|
|||
slots.forEach(slot -> slot.renderBackground(matrices, abilities, swap, tickDelta));
|
||||
|
||||
if (pony.getObservedSpecies().canCast()) {
|
||||
AbilitySlot slot = swap ? AbilitySlot.PASSIVE : AbilitySlot.PRIMARY;
|
||||
Ability<?> ability = pony.getAbilities().getStat(slot)
|
||||
Ability<?> ability = pony.getAbilities().getStat(AbilitySlot.PRIMARY)
|
||||
.getAbility(Unicopia.getConfig().hudPage.get())
|
||||
.orElse(null);
|
||||
|
||||
|
@ -133,7 +132,7 @@ public class UHud extends DrawableHelper {
|
|||
matrices.translate(PRIMARY_SLOT_SIZE / 2F, PRIMARY_SLOT_SIZE / 2F, 0);
|
||||
boolean first = !pony.asEntity().isSneaking();
|
||||
TypedActionResult<CustomisedSpellType<?>> inHand = pony.getCharms().getSpellInHand(false);
|
||||
boolean replacing = inHand.getResult().isAccepted() && pony.getAbilities().getStat(slot).getActiveAbility().isEmpty();
|
||||
boolean replacing = inHand.getResult().isAccepted() && pony.getAbilities().getStat(AbilitySlot.PRIMARY).getActiveAbility().isEmpty();
|
||||
if (first != prevPointed || replacing != prevReplacing || inHand.getValue().type() != focusedType) {
|
||||
focusedType = inHand.getValue().type();
|
||||
prevPointed = first;
|
||||
|
|
Loading…
Reference in a new issue