mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-27 07:17:58 +01:00
Fixed crash when wearing alicorn amulet. Fixes #400
This commit is contained in:
parent
9d03ad7576
commit
fe39258cff
1 changed files with 1 additions and 3 deletions
|
@ -26,9 +26,7 @@ public interface AttributeContainer {
|
|||
EntityAttributeModifier modifier = instance.getModifier(id);
|
||||
|
||||
if (!MathHelper.approximatelyEquals(desiredValue, modifier == null ? 0 : modifier.getValue())) {
|
||||
if (modifier != null) {
|
||||
instance.removeModifier(modifier);
|
||||
}
|
||||
instance.removeModifier(id);
|
||||
|
||||
if (desiredValue != 0) {
|
||||
if (permanent) {
|
||||
|
|
Loading…
Reference in a new issue