#713: Repairable should extend ItemMeta

This commit is contained in:
Doc 2022-01-14 10:18:25 +11:00 committed by md_5
parent d924635c65
commit aa908faf55
No known key found for this signature in database
GPG key ID: E8E901AC7C617C11

View file

@ -5,7 +5,7 @@ import org.jetbrains.annotations.NotNull;
/**
* 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
@ -30,5 +30,6 @@ public interface Repairable {
@SuppressWarnings("javadoc")
@NotNull
@Override
Repairable clone();
}