mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-18 00:25:39 +01:00
SPIGOT-5836: PotionEffect HEALTH_BOOST never expires
This commit is contained in:
parent
c99846cc76
commit
4ff609e60c
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user