#713: Repairable should extend ItemMeta

By: Doc <nachito94@msn.com>
This commit is contained in:
Bukkit/Spigot 2022-01-14 10:18:25 +11:00
parent 64aa0d9c60
commit 1973ad7228

View File

@ -5,7 +5,7 @@ import org.jetbrains.annotations.NotNull;
/** /**
* Represents an item that can be repaired at an anvil. * Represents an item that can be repaired at an anvil.
*/ */
public interface Repairable { public interface Repairable extends ItemMeta {
/** /**
* Checks to see if this has a repair penalty * Checks to see if this has a repair penalty
@ -30,5 +30,6 @@ public interface Repairable {
@SuppressWarnings("javadoc") @SuppressWarnings("javadoc")
@NotNull @NotNull
@Override
Repairable clone(); Repairable clone();
} }