FIXED:
- Fixed some exploits where players breaking blocks under crops or jumping on them would drop their seeds
- Fixed a typo in Valkyrie's Axe causing errors to throw in console
- Fixed some events being overridden by plugins like WorldGuard allowing players to exploit getting crops
- Fixed an issue with fatigue going straight from "Energized" to "Collapsed" causing players to die instantly if they don't sleep at night.
- Fixed reload command to properly reload config
CHANGED:
- Added MultiVerse as a soft depend, making this plugin load after Multiverse which will properly allow the plugin to enable in all worlds
ADDED:
- Added a version checker, which will block this plugin from attempting to run on versions below 1.14
- Added some new config options for thirst/hunger firstJoin/respawn amounts.
Code (YAML):
Thirst:
Enabled: true
# The level of thirst a player starts out with (max = 40) Starting-Amount: 30
# The level of thirst a player gets after respawning after death (max = 40) Respawn-Amount: 30
Hunger: # The level of hunger a player starts out with (max = 40)(this is a mixture of hunger and saturation) Starting-Amount: 30
# The level of hunger a player will receive after respawning after death (max = 40) Respawn-Amount: 30
BEHIND THE SCENES:
- New config class for managing config options a little more efficiently
- Fixed up config to auto-update itself during updates (previously I was having to add methods to manually update the config)