Fix CCE in LingeringPotionSplashEvent (#12463)

This commit is contained in:
wizjany
2025-04-22 16:08:29 -04:00
committed by GitHub
parent a820bdaeb9
commit 55f2020926

View File

@@ -38,7 +38,7 @@ public class LingeringPotionSplashEvent extends ProjectileHitEvent implements Ca
@NotNull
@Override
public ThrownPotion getEntity() {
return (ThrownPotion) this.entity;
return (ThrownPotion) super.getEntity();
}
/**