This update adds a whole new feature subset, placeholder, alongside fixing a bundle of smaller issues.
Changes:
- Death Coordinates Feature -- send soul coordinates to player on death
- New {world} placeholder for Death Coordinates and Logger
- World Aliases System -- if using {world}, put an alias to make things more readable (ie. "world" becomes "Overworld")
- Update Checker
-
/soulgravesplus reload now only reloads config values rather than re-registering listeners
To update,
add this to your config:
Code (Text):
death-coordinates:
# Death Coordinate settings
# This feature sends soul coordinates to the players' chat when they die.
# Enable/Disable this feature entirely
enabled: true
# Configure the text of the death coordinates message, using MiniMessage and/or Legacy Formatting
# Placeholders:
# {soulOwner} for soul owner (player)
# {x} for x coordinate
# {y} for y coordinate
# {z} for z coordinate
# {world} for world name, configure world name aliases before for readability
message: "&c☠ Your soul has spawned at &f{x} {y} {z}&c in the &f{world}"
Update your
options: section to this:
Code (Text):
options:
# Date format
date-format: "yyyy-MM-dd HH:mm:ss"
# Time format
# {d} for days, {h} for hours, {m} for minutes, {s} for seconds, {x} for milliseconds
time-format: "{m}:{s}:{x}"
world-name-aliases:
# World name aliases
# This is used to display the world name in a more readable format
# For example, "world_nether" can be displayed as "Nether"
# This is case-sensitive and should match the world name exactly
# The key is the world name, the value is the alias
# Example: "world_nether": "Nether"
world: "Overworld"
world_nether: "Nether"
world_the_end: "The End"
resource_world: "Resource World"
spawn: "Spawn"