diff --git a/paper-api/src/main/java/org/bukkit/entity/Projectile.java b/paper-api/src/main/java/org/bukkit/entity/Projectile.java index c854860c1..906b33b75 100644 --- a/paper-api/src/main/java/org/bukkit/entity/Projectile.java +++ b/paper-api/src/main/java/org/bukkit/entity/Projectile.java @@ -25,11 +25,11 @@ public interface Projectile extends Entity { /** * Determine if this projectile should bounce or not when it hits. - *
- * If a small fireball does not bounce it will set the target on fire. * * @return true if it should bounce. + * @deprecated does not do anything */ + @Deprecated public boolean doesBounce(); /** @@ -37,6 +37,8 @@ public interface Projectile extends Entity { * something. * * @param doesBounce whether or not it should bounce. + * @deprecated does not do anything */ + @Deprecated public void setBounce(boolean doesBounce); }