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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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();
}
/**