mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-09 11:44:19 +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;
|
package org.bukkit.entity.minecart;
|
||||||
|
|
||||||
import org.bukkit.entity.Minecart;
|
import org.bukkit.entity.Minecart;
|
||||||
|
import org.bukkit.inventory.InventoryHolder;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents a Minecart with a Hopper inside it
|
* 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