NOTE: THIS UPDATE ADDS OPTIONS TO CONFIG.YML
Please contact me if you experience any issues or require any help.
Added SQLite support to save block locations to avoid players duplicating rewards. You can disable this option and blocks will still be tracked, just not saved.
Removed The ability to block silk touch as its no longer needed.
Please replace the
checks section with the text below
Code (YAML):
# The checks system provides methods to help make sure players can't duplicate rewards.
checks
:
# This option uses SQLite. SQL support will come later.
storage
:
# Should blocks be stored in a database? This will keep all block data across restarts. Setting this option to false will still keep track of blocks,
# but they will NOT be saved across restarts.
enabled
: true
# How long will blocks be stored for until they expire? This will help clear up space in the database.
# To disable this, just set it to 0. This is in days.
expiry
: 3
Please do not reload the server with /reload, or new blocks will not be saved. You shouldn't ever run /reload anyway.