mirror of
https://github.com/PaperMC/Paper.git
synced 2025-07-26 09:42:06 -07:00
Fix CCE in LingeringPotionSplashEvent (#12463)
This commit is contained in:
@@ -38,7 +38,7 @@ public class LingeringPotionSplashEvent extends ProjectileHitEvent implements Ca
|
||||
@NotNull
|
||||
@Override
|
||||
public ThrownPotion getEntity() {
|
||||
return (ThrownPotion) this.entity;
|
||||
return (ThrownPotion) super.getEntity();
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user