BlockRegen v1.5 - The Experience Update!
This version introduces a highly requested feature, allowing server administrators to have full control over experience drops from regenerating blocks.
✨ New Features
Configurable Experience Drops
Blocks managed by BlockRegen can now drop experience orbs when broken, just like vanilla ores!
- A new optional setting, exp-drop-amount, has been added to each block's configuration in blocks.yml.
- You can define a fixed amount (e.g., 5) or a random range (e.g., '3-7') of EXP to be dropped for each block individually.
- This feature is fully backward-compatible. If the exp-drop-amount line is omitted, the block will not drop any experience.
Example blocks.yml configuration:
Code (Text):
DIAMOND_ORE:
replaced-block: STONE
regen-delay: 600
exp-drop-amount: '3-7' # Drops a random amount of 3 to 7 EXP
drops:
natural-drop: true
COAL_ORE:
replaced-block: STONE
regen-delay: 120
exp-drop-amount: 2 # Always drops exactly 2 EXP
drops:
natural-drop: true
️ Improvements
- The new experience drop feature works independently of the item drop system. This means players will still receive experience orbs correctly even when auto-inventory is enabled.