Skip to content

Commit

Permalink
Removed warning on changing protection range mid-game.
Browse files Browse the repository at this point in the history
  • Loading branch information
tastybento committed Jul 16, 2020
1 parent 00b37a0 commit 763b039
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/world/bentobox/bskyblock/Settings.java
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public class Settings implements WorldSettings {
@ConfigComment("Default protection range radius in blocks. Cannot be larger than distance.")
@ConfigComment("Admins can change protection sizes for players individually using /bsbadmin range set <player> <new range>")
@ConfigComment("or set this permission: bskyblock.island.range.<number>")
@ConfigEntry(path = "world.protection-range", needsReset = true)
@ConfigEntry(path = "world.protection-range")
private int islandProtectionRange = 50;

@ConfigComment("Start islands at these coordinates. This is where new islands will start in the")
Expand Down

2 comments on commit 763b039

@Poslovitch
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why? Afaik, this is still considered "dangerous" as we still have reports of people messing up their databases due to modifying this.

@tastybento
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, the protection range can change anytime. It's the island distance that is a problem.

Please sign in to comment.