mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-08-31 22:22:49 +00:00
#713: Repairable should extend ItemMeta
This commit is contained in:
parent
d924635c65
commit
aa908faf55
1 changed files with 2 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue