Alex's Mobs

Alex's Mobs

72M Downloads

Unbreaking has reduced effect on Tarantula Hawk Elytra

Zareul opened this issue ยท 2 comments

commented

A regular Elytra with Unbreaking III seems to be lasting longer than a Tarantula Hawk Elytra with the same enchantment. I discovered this after noticing that, after upgrading my Elytra to a Tarantula Hawk one, durability drained faster than before I "upgraded" it.

I've uploaded a video of this behaviour:
Watch the video

commented

https://github.com/Alex-the-666/AlexsMobs/blob/4b7aafac950c0aaba5ddef6c692aafc0678eaf0a/src/main/java/com/github/alexthe666/alexsmobs/item/ItemTarantulaHawkElytra.java#L52-L57

It seems to need to check for Unbreaking here.

I checked this in more detail, and it appears the code for applying unbreaking (DigDurabilityEnchantment#shouldIgnoreDurabilityDrop) is giving more chance for armor to get damaged, even with Unbreaking.

Because Elytra does not extend ArmorItem, there's only a 1 in (unbreaking lvl + 1) chance it takes damage every second, whereas the tarantula hawk elytra has an extra 60% chance to take damage.

If the probability calculator I'm using is correct, this means that with Unbreaking 3, the elytra has a 25% chance of getting damage each second and the tarantula hawk elytra has a 70% chance to take damage every second.