Overview
- fix: New standalone master switch and fixes for alias.yml
What to edit in
alias.yml (in plugins/GriefPreventionData/) to use the new options. Reload with
after changes.
1. Global Toggles (top of file)
Code (Text):
# Master switch: false = no alias system, use default English command names
enabled: true
# Standalone commands: false = only /claim and /aclaim (or their translations) exist
# No /trust, /trapped, /abandonclaim, etc. – use /claim trust, /claim trapped, etc. instead
standalone: true
2. Root command names (claim / aclaim)
Under
commands: →
claim: or
aclaim: use the
commands: list—
every entry is a full root command (not just the first one).
Example – allow both /claim and /claims:
Code (Text):
commands:
claim:
enable: true
commands: [claim, claims] # /claim create and /claims create both work
# ...
aclaim:
enable: true
commands: [aclaim, aclaims] # /aclaim restore and /aclaims restore both work
# ...
Full changelog:
17.1.0...17.1.1