LavaRise v2.0.2
Warning
Breaking changes
- Structure of
items
configuration changed
1. Structure of items
configuration changed
The items
section has been restructured to provide more customization options for item attributes such as names, lore, and enchantments.
items:
- - "IRON_AXE"
- - "IRON_PICKAXE"
+ - material: "IRON_AXE"
+ amount: 1
+ name: "&6Starter Axe"
+ lore:
+ - "&8A basic axe to chop down trees"
+ enchantments:
+ - "EFFICIENCY:2"
+ - "UNBREAKING:1"
+ - material: "IRON_PICKAXE"
+ amount: 1
+ name: "&6Starter Pickaxe"
+ lore:
+ - "&8A basic pickaxe to mine ores"
+ enchantments:
+ - "EFFICIENCY:2"
+ - "UNBREAKING:1"
Changelog
Full Changelog: GitHub Comparison
New Features
- Arena Info Command: Introduced a new command to display information about the current arena, providing admins with quick insights on arena settings. (fefaa93)
- Game Items Customization: Refactored the way game items are customized, allowing for more flexible and tailored in-game items. (7c73f6c)
Bug Fixes
- NullPointerException Prevention: Resolved an issue in
getGameArea
to handle cases where a null world could cause a NullPointerException. (bdf91fc) - Game Reset on Server Shutdown: Fixed an issue where the game state would not reset properly upon server shutdown, ensuring a clean reset for future sessions. (a5fdf64)