Skip to content

Commit

Permalink
Correct version reference.
Browse files Browse the repository at this point in the history
  • Loading branch information
tastybento committed Mar 21, 2021
1 parent 1e65b76 commit 769d4af
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions src/main/java/world/bentobox/boxed/Settings.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public class Settings implements WorldSettings {
@ConfigComment("but that blocks all new advancement announcements. This setting tells Boxed to broadcast new advancements.")
@ConfigEntry(path = "boxed.broadcast-advancements")
private boolean broadcastAdvancements;

/* WORLD */
@ConfigComment("Friendly name for this world. Used in admin commands. Must be a single word")
@ConfigEntry(path = "world.friendly-name")
Expand All @@ -79,12 +79,12 @@ public class Settings implements WorldSettings {
@ConfigComment("Other plugins may override this setting")
@ConfigEntry(path = "world.difficulty")
private Difficulty difficulty = Difficulty.NORMAL;

@ConfigComment("Allow surface structures - villages, shipwrecks, broken portals, etc.")
@ConfigComment("These will be randomly placed, so may not be available for every player.")
@ConfigEntry(path = "world.allow-structures", needsRestart = true)
private boolean allowStructures = true;

@ConfigComment("Allow strongholds.")
@ConfigComment("These will be randomly placed, so may not be available for every player.")
@ConfigEntry(path = "world.allow-strongholds", experimental = true, needsRestart = true)
Expand Down Expand Up @@ -181,7 +181,7 @@ public class Settings implements WorldSettings {
@ConfigComment("This option indicates if nether portals should be linked via dimensions.")
@ConfigComment("Option will simulate vanilla portal mechanics that links portals together")
@ConfigComment("or creates a new portal, if there is not a portal in that dimension.")
@ConfigEntry(path = "world.nether.create-and-link-portals", since = "1.16")
@ConfigEntry(path = "world.nether.create-and-link-portals", since = "1.0.3")
private boolean makeNetherPortals = false;

// End
Expand Down Expand Up @@ -1688,7 +1688,7 @@ public long getSeed() {
public void setSeed(long seed) {
this.seed = seed;
}

@Override
public boolean isCheckForBlocks() {
// Do not check for blocks when looking for a new island spot
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ world:
# This option indicates if nether portals should be linked via dimensions.
# Option will simulate vanilla portal mechanics that links portals together or creates a new portal,
# if there is not a portal in other dimension.
# Added since 1.16
# Added since 1.0.3
create-and-link-portals: false
end:
# End Nether - if this is false, the end world will not be made and access to
Expand Down

0 comments on commit 769d4af

Please sign in to comment.