BlockInventoryHolder
, BlockState
, Container
, InventoryHolder
, Lockable
, Metadatable
, Nameable
, PersistentDataHolder
, TileState
public interface BrewingStand extends Container
Modifier and Type | Method | Description |
---|---|---|
int |
getBrewingTime() |
How much time is left in the brewing cycle.
|
int |
getFuelLevel() |
Get the level of current fuel for brewing.
|
BrewerInventory |
getInventory() |
Gets the inventory of the block represented by this block state.
|
BrewerInventory |
getSnapshotInventory() |
Gets the captured inventory snapshot of this container.
|
void |
setBrewingTime(int brewTime) |
Set the time left before brewing completes.
|
void |
setFuelLevel(int level) |
Set the level of current fuel for brewing.
|
getBlock
getBlock, getBlockData, getChunk, getData, getLightLevel, getLocation, getLocation, getRawData, getType, getWorld, getX, getY, getZ, isPlaced, setBlockData, setData, setRawData, setType, update, update, update
getMetadata, hasMetadata, removeMetadata, setMetadata
getCustomName, setCustomName
getPersistentDataContainer
int getBrewingTime()
void setBrewingTime(int brewTime)
brewTime
- Brewing timeint getFuelLevel()
void setFuelLevel(int level)
level
- fuel level@NotNull BrewerInventory getInventory()
Container
If the block was changed to a different type in the meantime, the returned inventory might no longer be valid.
If this block state is not placed this will return the captured inventory snapshot instead.
getInventory
in interface Container
getInventory
in interface InventoryHolder
@NotNull BrewerInventory getSnapshotInventory()
Container
The returned inventory is not linked to any block. Any modifications to
the returned inventory will not be applied to the block represented by
this block state up until BlockState.update(boolean, boolean)
has been
called.
getSnapshotInventory
in interface Container
Copyright © 2019. All rights reserved.