From 0cef9489826dba2a7c672da83e9afe759b2ced80 Mon Sep 17 00:00:00 2001 From: LlmDl Date: Fri, 12 Jul 2024 11:25:52 -0500 Subject: [PATCH] - Add Districts to Towns and TownBlocks. - Districts are groupings of townblocks, owned by a town. - These are similar to PlotGroups but with less restrictions: - Districts' townblocks are not required to have the same plot permissions, plot type, owner, or name. - Districts currently show in the chunk notifications, map hud, and in the /towny map hover. - Districts will lead to future features being possible including districts appearing on Mappers. - Townblocks in districts are required to be adjacent to each other. - Closes #7479. - New Commands: /plot district - Subcommands: - create|new [name]: creates a new district with the given name. - add {name}: adds a townblock to the given district, if you are actively adding to a distric you do not need to continue supplying the name. - rename [name]: changes the name of a district. - remove: removes the townblock you are stood in from a district. - delete: deletes the district in which you are stood. - New Permission Node: towny.command.plot.district.* - Child node of towny.command.plot.* - Child Nodes: - towny.command.plot.district.add: true - towny.command.plot.district.remove: true - towny.command.plot.district.delete: true - towny.command.plot.district.rename: true --- Towny/src/main/resources/ChangeLog.txt | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/Towny/src/main/resources/ChangeLog.txt b/Towny/src/main/resources/ChangeLog.txt index 8b58506ec1..bef7a7e8bc 100644 --- a/Towny/src/main/resources/ChangeLog.txt +++ b/Towny/src/main/resources/ChangeLog.txt @@ -9865,4 +9865,26 @@ v0.92.0.11: - This means that a town named New_York would register 0 capitals. While McDonalds would register 1. COOLTOWN would register 7 capital letters. - Fix config typo, courtesy of auriasmc with PR #7498. (First-Time Contributor!) 0.100.3.6: - - Add ignoreotherchannels to /res toggle and /res set mode tabcompleters. \ No newline at end of file + - Add ignoreotherchannels to /res toggle and /res set mode tabcompleters. + - Add Districts to Towns and TownBlocks. + - Districts are groupings of townblocks, owned by a town. + - These are similar to PlotGroups but with less restrictions: + - Districts' townblocks are not required to have the same plot permissions, plot type, owner, or name. + - Districts currently show in the chunk notifications, map hud, and in the /towny map hover. + - Districts will lead to future features being possible including districts appearing on Mappers. + - Townblocks in districts are required to be adjacent to each other. + - Closes #7479. + - New Commands: /plot district + - Subcommands: + - create|new [name]: creates a new district with the given name. + - add {name}: adds a townblock to the given district, if you are actively adding to a distric you do not need to continue supplying the name. + - rename [name]: changes the name of a district. + - remove: removes the townblock you are stood in from a district. + - delete: deletes the district in which you are stood. + - New Permission Node: towny.command.plot.district.* + - Child node of towny.command.plot.* + - Child Nodes: + - towny.command.plot.district.add: true + - towny.command.plot.district.remove: true + - towny.command.plot.district.delete: true + - towny.command.plot.district.rename: true \ No newline at end of file