diff --git a/paper-api/src/main/java/org/bukkit/entity/Ocelot.java b/paper-api/src/main/java/org/bukkit/entity/Ocelot.java index 62a701f35a..35f970ca47 100644 --- a/paper-api/src/main/java/org/bukkit/entity/Ocelot.java +++ b/paper-api/src/main/java/org/bukkit/entity/Ocelot.java @@ -27,15 +27,19 @@ public interface Ocelot extends Animals { * Gets the current type of this cat. * * @return Type of the cat. + * @deprecated Cats are now a separate entity. */ @NotNull + @Deprecated public Type getCatType(); /** * Sets the current type of this cat. * * @param type New type of this cat. + * @deprecated Cats are now a separate entity. */ + @Deprecated public void setCatType(@NotNull Type type); /**