LostQuasar opened this issue 3 years ago ยท 2 comments
When armor has a module inserted it creates a massive durablilty bar when iterations is greater than max for self aware (Teir self aware for demonstration)
DeepMobLearning-Refabricated/modular-armor/src/main/kotlin/dev/nathanpb/dml/modular_armor/ItemModularGlitchArmor.kt
Line 87 in cdd2f8f
Change this so that if current > max return max
return if (max == 0) 0 else if (current > max) 13 else ((13f * current) / max)
I think this should work