mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-08 19:34:09 +01:00
Make HopperMinecart implement InventoryHolder. Adds BUKKIT-3796
By: Michael Limiero <mike5713@gmail.com>
This commit is contained in:
parent
1a9aed23bf
commit
5cf4c1bb6c
1 changed files with 2 additions and 1 deletions
|
@ -1,9 +1,10 @@
|
|||
package org.bukkit.entity.minecart;
|
||||
|
||||
import org.bukkit.entity.Minecart;
|
||||
import org.bukkit.inventory.InventoryHolder;
|
||||
|
||||
/**
|
||||
* Represents a Minecart with a Hopper inside it
|
||||
*/
|
||||
public interface HopperMinecart extends Minecart {
|
||||
public interface HopperMinecart extends Minecart, InventoryHolder {
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue