13
0
geforkt von Mirrors/Paper

#713: Repairable should extend ItemMeta

By: Doc <nachito94@msn.com>
Dieser Commit ist enthalten in:
Bukkit/Spigot 2022-01-14 10:18:25 +11:00
Ursprung 64aa0d9c60
Commit 1973ad7228

Datei anzeigen

@ -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();
}