
Outdated deixis in config comment
MilesBHuff opened this issue ยท 1 comments
Describe the problem
This is like the tiniest thing ever, but:
In Towny v1.100.3.0
, the comment for overclaiming_prevented_by_homeblock_radius
uses the word "below" to refer to a setting located far above it. I'm guessing min_distance_from_town_homeblock
used to be colocated, but was moved during an update.
overclaiming_prevented_by_homeblock_radius
is on line 2440
;
min_distance_from_town_homeblock
is on line 2370
.
Line 2370
is not below line 2440
.
What steps will reproduce the problem?
- Look at
config.yml
:
2370 min_distance_from_town_homeblock: '10'
...
2438 # While true, overclaiming is stopped by the min_distance_from_town_homeblock setting below.
2439 # This prevents a town from having townblocks stolen surrounding their homeblocks.
2440 overclaiming_prevented_by_homeblock_radius: 'true'
What is the expected output?
2438 # While true, overclaiming is stopped by the min_distance_from_town_homeblock setting.
(This version omits " below".)
Towny version
0.100.3.0
Server version
Paper version git-Paper-411
(MC: 1.17.1
) (Implementing API version 1.17.1-R0.1-SNAPSHOT
) (Git: 6625db3
on ver/1.17.1
)
Please use Pastebin.com to link the following files
- Your full server startup from the logs\latest.log: Not relevant, so not going through the trouble of gisting it.
- Your Towny config.yml: https://github.com/SettleScape/server/blob/master/minecraft/plugins/Towny/settings/config.yml
- Your townyperms.yml: https://github.com/SettleScape/server/blob/master/minecraft/plugins/Towny/settings/townyperms.yml
- Your log's error: No error.
Unrelated, but this typo has been present for years:
# The maximum amount of money that can be charge by a nation on their conquered towns.
It should be:
# The maximum amount of money that can be charged by a nation on their conquered towns.
("charge" -> "charged")
Sorry for not reporting it earlier.