Skip to content

Commit

Permalink
- Add the ability for nations to sanction towns, preventing them from
Browse files Browse the repository at this point in the history
joining the nation via invite or join.
    - Using /n sanctiontown ... kings can add/remove and list their
sanctioned towns.
    - Closes #6544.
  - New Command: /nation sanctiontown
    - add [townname] - Adds a town to the sanctioned town list.
    - remove [townname] - Removes a town from the sanctioned town list.
    - list - Lists your nation's sanctioned towns.
    - list [nationname] - Lists the sanctioned towns of other nations.
  - New Command: /ta nation [nationname] sanctiontown
    - add [townname] - Adds a town to the sanctioned town list.
    - remove [townname] - Removes a town from the sanctioned town list.
    - list - Lists the nation's sanctioned towns.
  - New Permission Node: towny.command.nation.sanctiontown
    - Allows adding/removing sanctioned towns, a child node of
towny.command.nation.*.
    - No townyperms.yml change is required.
  - New Permission Node: towny.command.townyadmin.nation.sanctiontown
    - Allows admins to add/remove sanctioned towns from a given nation,
a child node of towny.command.townyadmin.nation.*.
    - No townyperms.yml change is required.
  - API: Added NationSanctionTownAddEvent
    - A cancellable event which is fired before a town becomes
sanctioned.
  - API: Added NationSanctionTownRemoveEvent
    - A cancellable event which is fired before a town becomes
unsanctioned.
  • Loading branch information
LlmDl committed Dec 21, 2023
1 parent f046154 commit f320915
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion Towny/src/main/resources/ChangeLog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9291,4 +9291,26 @@ v0.92.0.11:
0.100.0.13:
- Bump org.apache.maven.plugins:maven-surefire-plugin from 3.1.2 to 3.2.3.
- Bump com.github.seeseemelk:MockBukkit-v1.20 from 3.56.0 to 3.58.0.
- Make Towny more resiliant to errors which come from having no Economy present on the server.
- Make Towny more resiliant to errors which come from having no Economy present on the server.
- Add the ability for nations to sanction towns, preventing them from joining the nation via invite or join.
- Using /n sanctiontown ... kings can add/remove and list their sanctioned towns.
- Closes #6544.
- New Command: /nation sanctiontown
- add [townname] - Adds a town to the sanctioned town list.
- remove [townname] - Removes a town from the sanctioned town list.
- list - Lists your nation's sanctioned towns.
- list [nationname] - Lists the sanctioned towns of other nations.
- New Command: /ta nation [nationname] sanctiontown
- add [townname] - Adds a town to the sanctioned town list.
- remove [townname] - Removes a town from the sanctioned town list.
- list - Lists the nation's sanctioned towns.
- New Permission Node: towny.command.nation.sanctiontown
- Allows adding/removing sanctioned towns, a child node of towny.command.nation.*.
- No townyperms.yml change is required.
- New Permission Node: towny.command.townyadmin.nation.sanctiontown
- Allows admins to add/remove sanctioned towns from a given nation, a child node of towny.command.townyadmin.nation.*.
- No townyperms.yml change is required.
- API: Added NationSanctionTownAddEvent
- A cancellable event which is fired before a town becomes sanctioned.
- API: Added NationSanctionTownRemoveEvent
- A cancellable event which is fired before a town becomes unsanctioned.

0 comments on commit f320915

Please sign in to comment.