mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-08-21 05:44:17 +00:00
Fix LingeringPotionSplashEvent getEntity method
This commit is contained in:
parent
11a6d2ef7c
commit
ad5d102589
1 changed files with 4 additions and 3 deletions
|
@ -1,7 +1,6 @@
|
|||
package org.bukkit.event.entity;
|
||||
|
||||
import org.bukkit.entity.AreaEffectCloud;
|
||||
import org.bukkit.entity.LingeringPotion;
|
||||
import org.bukkit.entity.ThrownPotion;
|
||||
import org.bukkit.event.Cancellable;
|
||||
import org.bukkit.event.HandlerList;
|
||||
|
@ -22,8 +21,8 @@ public class LingeringPotionSplashEvent extends ProjectileHitEvent implements Ca
|
|||
|
||||
@NotNull
|
||||
@Override
|
||||
public LingeringPotion getEntity() {
|
||||
return (LingeringPotion) super.getEntity();
|
||||
public ThrownPotion getEntity() {
|
||||
return (ThrownPotion) super.getEntity();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -36,10 +35,12 @@ public class LingeringPotionSplashEvent extends ProjectileHitEvent implements Ca
|
|||
return entity;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isCancelled() {
|
||||
return cancelled;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setCancelled(boolean cancel) {
|
||||
cancelled = cancel;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue