mirror of
https://github.com/Minestom/Minestom.git
synced 2024-12-27 11:38:03 +01:00
Fix build
This commit is contained in:
parent
f5d550cda9
commit
459e65da72
@ -105,8 +105,6 @@ public class AttributeInstance {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Recalculate the value of this attribute instance using the modifiers.
|
* Recalculate the value of this attribute instance using the modifiers.
|
||||||
*
|
|
||||||
* @return the attribute value
|
|
||||||
*/
|
*/
|
||||||
protected void refreshCachedValue() {
|
protected void refreshCachedValue() {
|
||||||
float base = getBaseValue();
|
float base = getBaseValue();
|
||||||
@ -124,7 +122,6 @@ public class AttributeInstance {
|
|||||||
result *= (1.0f + modifier.getAmount());
|
result *= (1.0f + modifier.getAmount());
|
||||||
}
|
}
|
||||||
|
|
||||||
final float finalValue = Math.min(result, getAttribute().getMaxValue());
|
this.cachedValue = Math.min(result, getAttribute().getMaxValue());
|
||||||
this.cachedValue = finalValue;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user