mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-08 19:34:09 +01:00
Don't use deprecated interface.
By: Travis Watkins <amaranth@ubuntu.com>
This commit is contained in:
parent
08b0ee9e53
commit
a6d0d62b06
1 changed files with 3 additions and 1 deletions
|
@ -1,8 +1,10 @@
|
|||
package org.bukkit.block;
|
||||
|
||||
import org.bukkit.inventory.InventoryHolder;
|
||||
|
||||
/**
|
||||
* Represents a hopper.
|
||||
*/
|
||||
public interface Hopper extends BlockState, ContainerBlock {
|
||||
public interface Hopper extends BlockState, InventoryHolder {
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue