Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-16 13:00:06 +01:00
Always call PotionSplashEvent. Fixes BUKKIT-3363
This change allows plugins to add recipients to a PotionSplashEvent when it would have otherwise had none.
Dieser Commit ist enthalten in:
Ursprung
d577b840d4
Commit
5934a65729
@ -68,7 +68,7 @@ public class EntityPotion extends EntityProjectile {
|
||||
AxisAlignedBB axisalignedbb = this.boundingBox.grow(4.0D, 2.0D, 4.0D);
|
||||
List list1 = this.world.a(EntityLiving.class, axisalignedbb);
|
||||
|
||||
if (list1 != null && !list1.isEmpty()) {
|
||||
if (list1 != null) { // CraftBukkit - Run code even if there are no entities around
|
||||
Iterator iterator = list1.iterator();
|
||||
|
||||
// CraftBukkit
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren