Added 'since' and improved comments for 'island.delete-speed' in config.yml

This commit is contained in:
Florian CUNY 2019-09-08 15:12:50 +02:00
parent 6f16c28591
commit 06893223d9
1 changed files with 3 additions and 4 deletions

View File

@ -167,14 +167,13 @@ public class Settings implements ConfigObject {
@ConfigEntry(path = "island.paste-speed")
private int pasteSpeed = 1000;
@ConfigComment("Number of chunks per world to regenerate per tick. If there is a nether and end then")
@ConfigComment("3x this number will be regenerated")
@ConfigComment("Number of chunks per world to regenerate per tick.")
@ConfigComment("If there is a nether and end then 3x this number will be regenerated per tick.")
@ConfigComment("Smaller values will help reduce noticeable lag but will make deleting take longer.")
@ConfigComment("A setting of 0 will leave island blocks (not recommended).")
@ConfigEntry(path = "island.delete-speed")
@ConfigEntry(path = "island.delete-speed", since = "1.7.0")
private int deleteSpeed = 5;
// Automated ownership transfer
@ConfigComment("Toggles the automated ownership transfer.")
@ConfigComment("It automatically transfers the ownership of an island to one of its members in case the current owner is inactive.")