Provides API to control what Loot Table an object uses. Also provides an Event to control if a lootable inventory should auto replenish for a player. Provides methods to determine players looted state for an object
10 lines
257 B
Java
10 lines
257 B
Java
package org.bukkit.block;
|
|
|
|
import com.destroystokyo.paper.loottable.LootableBlockInventory;
|
|
import org.bukkit.loot.Lootable;
|
|
|
|
/**
|
|
* Represents a captured state of a hopper.
|
|
*/
|
|
public interface Hopper extends Container, LootableBlockInventory { } // Paper
|