v2.3.3 Fix chest issue, async warning. Added new error handler
Bug Fix:
- Fixed hopper doesn't read double chest's inventory after server restart
- Fixed hopper doesn't transfer item to advancedchest after server restart
- Fixed async chunk loading warning
- Fixed plugin doesn't remove error data
Added:
Code (YAML):
database:
options:
error_data:
hopper
:
# If you see an error "Failed to load hopper[<location>]. Reason: The <world> doesn't exist!"
# That means a hopper located in a world that doesn't exist
# If you are using player world plugin that the world will not get loaded until player join the server
# We recommend you use IGNORE for the action
#
# IGNORE - the plugin will not do any action to the data
# DELETE - the plugin will remove the data from database
invalid_world
: IGNORE
# If you see a error "Failed to load hopper[<location>]. Reason: The block is not a hopper!"
# This error rarely happen unless the block get modified by other plugin
# We recommend using DELETE instead of REPLACE in this situation
#
# IGNORE - the plugin will not do any action to the data
# DELETE - the plugin will remove the data from database
# REPLACE - replace the block back to hopper
not_hopper
: IGNORE
fuel_chest
:
# If you see an error "Failed to setup fuel chest at <location>. Reason: The <world> doesn't exist!"
# That means a fuel chest located in a world that doesn't exist
# If you are using player world plugin that the world will not get loaded until player join the server
# We recommend you use IGNORE for the action
#
# IGNORE - the plugin will not do any action to the data
# DELETE - the plugin will remove the data from database
invalid_world
: IGNORE
# If you see an error "Failed to setup fuel chest at <location>. Reason: The block is not a chest!"
# This error rarely happen unless the block get modified by other plugin
# We recommend using DELETE instead of REPLACE in this situation
#
# IGNORE - the plugin will not do any action to the data
# DELETE - the plugin will remove the data from database
# REPLACE - replace the block back to chest
not_chest
: IGNORE