Changelog:
- Added `world-border:<number>` parameter to `/cubworlds create`
Code (YAML):
New usage
: /cubworlds create <name> <NORMAL|VOID|NETHER|END>
[prevent-grief:<true|false>
]
[world-border:<number>
]
- Changed teleportation logic in `/cubworlds teleport <world_name>`
- Improved world loading reliability
- Refactored code for clarity and maintainability
⚠️ Configuration Changes (Breaking)
The config.yml structure has been reworked.
worlds is a list of maps with explicit **name, spawn, and optional world-border fields**.
Existing configs must be updated manually.
Old:
Code (YAML):
worlds:
- name
: world_spawn
type
: VOID
prevent-grief
: true
New:
Code (YAML):
worlds:
- name
: world_spawn
type
: VOID
prevent-grief
: true
world-border:
size
: 1010
center:
x
: 0
z
: 0
spawn:
x
: 0.5
y
: 0
z
: -62.5
yaw
: 0
pitch
: -5.0
Full Changelog:
https://github.com/CublexLabs/CubWorlds/compare/v1.1.5...v1.1.6