Spartan Weaponry

Spartan Weaponry

48M Downloads

Traits for other weapon types being added to tooltips

KreloX opened this issue ยท 0 comments

commented

public void addTraitsToTooltip(ItemStack stack, WeaponType type, List<Component> tooltip, boolean isShiftPressed)
{
if(hasAnyBonusTraits(type))
{
tooltip.add(Component.translatable(String.format("tooltip.%s.trait.material_bonus", ModSpartanWeaponry.ID)).withStyle(ChatFormatting.AQUA));
traits.forEach((trait) -> trait.addTooltip(stack, tooltip, isShiftPressed, WeaponTrait.InvalidReason.NONE));
}
if(invalidTraits.isPresent())
invalidTraits.get().forEach((traitPair) -> traitPair.getLeft().addTooltip(stack, tooltip, isShiftPressed, traitPair.getRight()));
}

forEach should be called on getBonusTraits(type) instead of all traits. This issue doesn't currently affect longbows because unlike with other weapons, the LongbowItem's appendHoverText method iterates straight over rangedTraits instead of calling material.addTraitsToTooltip(). So this inconsistency should also be fixed.