Configurable Ban Checking & bounty-items bug fix.
You can now configure how often bountied players are checked for a ban in the auto-bounties.yml file. The remove-banned-players option in the config.yml file has been moved here.
Code (YAML):
# Players are checked every once in a while if they are banned.
# The default config of 72001, 0.083, 500, checks bans every hour and guarantee everyone will be checked after 12 hours (1/0.083)
# except if there are more than 500 * 12 = 6000 bounties
ban-checking:
enabled
: true
# How often (in ticks) bans will be checked.
interval
: 72001
# The ratio of players checked every interval.
check-portion
: 0.083
# The maximum number of players that can be checked at once.
max-players-per-check
: 500
Fixed a bug where items would disappear in the bounty-item-select GUI if you placed them there and navigated to a different page.