SPIGOT-5836: PotionEffect HEALTH_BOOST never expires

This commit is contained in:
md_5 2020-06-26 19:13:33 +10:00
parent c99846cc76
commit 4ff609e60c
No known key found for this signature in database
GPG Key ID: E8E901AC7C617C11

View File

@ -1526,10 +1526,13 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
}
for (AttributeModifiable genericInstance : collection) {
if (genericInstance.getAttribute() == GenericAttributes.MAX_HEALTH) {
genericInstance.setValue(scaledHealth ? healthScale : getMaxHealth());
collection.remove(genericInstance);
break;
}
}
AttributeModifiable dummy = new AttributeModifiable(GenericAttributes.MAX_HEALTH, (attribute) -> {});
dummy.setValue(scaledHealth ? healthScale : getMaxHealth());
collection.add(dummy);
}
@Override