- Added: Settings
# Link / destination settings
link:
# Should whitelist mode be activated by default?
whitelist: false
# Should strict filtering be enabled by default?
strict: false
- Added: API methods
Register hopper:
/**
* Register a hopper.
*
*
@Param block The block
*
@Param ownerUID Owner of the future hopper
* @throws IllegalArgumentException The block is not a hopper, the world is not a hopper world or the hopper already exists.
* @throws IllegalStateException Method not called on the main thread.
* @throws UnloadedTargetException The chunk is unloaded.
*/
Add link (on hopper):
/**
* Add a link (destination).
*
@Param block Target block.
*
@Param player Optional: send failure messages to the player.
*
@Return null, if the link could not be added.
* @throws IllegalArgumentException The target block is not a block-inventory holder.
* @throws IllegalStateException Not called on main thread.
* @throws UnloadedTargetException The chunk is unloaded.
*/