13
0
geforkt von Mirrors/Paper

Add Hopper block state and inventory type. Adds BUKKIT-3749

By: Michael Limiero <mike5713@gmail.com>
Dieser Commit ist enthalten in:
Bukkit/Spigot 2013-03-15 23:22:53 -04:00
Ursprung 50f297d941
Commit 08b0ee9e53
2 geänderte Dateien mit 12 neuen und 0 gelöschten Zeilen

Datei anzeigen

@ -0,0 +1,8 @@
package org.bukkit.block;
/**
* Represents a hopper.
*/
public interface Hopper extends BlockState, ContainerBlock {
}

Datei anzeigen

@ -56,6 +56,10 @@ public enum InventoryType {
* A beacon inventory, with 1 CRAFTING slot
*/
BEACON(1, "container.beacon"),
/**
* A hopper inventory, with 5 slots of type CONTAINER.
*/
HOPPER(5, "Item Hopper"),
;
private final int size;