8000 Fix CCE in LingeringPotionSplashEvent (#12463) · PaperMC/Paper@55f2020 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Commit 55f2020

Browse files
authored
Fix CCE in LingeringPotionSplashEvent (#12463)
1 parent a820bda commit 55f2020

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

paper-api/src/main/java/org/bukkit/event/entity/LingeringPotionSplashEvent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public LingeringPotionSplashEvent(@NotNull final ThrownPotion potion, @Nullable
3838
@NotNull
3939
@Override
4040
public ThrownPotion getEntity() {
41-
return (ThrownPotion) this.entity;
41+
return (ThrownPotion) super.getEntity();
4242
}
4343

4444
/**

0 commit comments

Comments
 (0)
0