SPIGOT-5591: Allow concurrent potion effects

This commit is contained in:
md_5 2020-02-23 10:33:10 +11:00
parent 25a9a9ff62
commit d5ef2eab9e
1 changed files with 0 additions and 6 deletions

View File

@ -321,12 +321,6 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity {
@Override
public boolean addPotionEffect(PotionEffect effect, boolean force) {
if (hasPotionEffect(effect.getType())) {
if (!force) {
return false;
}
removePotionEffect(effect.getType());
}
getHandle().addEffect(new MobEffect(MobEffectList.fromId(effect.getType().getId()), effect.getDuration(), effect.getAmplifier(), effect.isAmbient(), effect.hasParticles()), EntityPotionEffectEvent.Cause.PLUGIN);
return true;
}