Commits
Matt authored and md_5 committed b2aefa586cd
1 1 | package org.bukkit.block; |
2 2 | |
3 3 | import org.bukkit.inventory.BrewerInventory; |
4 + | import org.bukkit.inventory.InventoryHolder; |
4 5 | |
5 6 | /** |
6 7 | * Represents a brewing stand. |
7 8 | */ |
8 - | public interface BrewingStand extends BlockState, ContainerBlock { |
9 + | public interface BrewingStand extends BlockState, InventoryHolder { |
9 10 | |
10 11 | /** |
11 12 | * How much time is left in the brewing cycle |
12 13 | * |
13 14 | * @return Brew Time |
14 15 | */ |
15 16 | int getBrewingTime(); |
16 17 | |
17 18 | /** |
18 19 | * Set the time left before brewing completes. |