From 358f1069f3ec6dc412a6856f4fd0e1aa2f096ffe Mon Sep 17 00:00:00 2001 From: tastybento Date: Sun, 21 Mar 2021 16:08:54 -0700 Subject: [PATCH] Correct version number reference in Settings. --- pom.xml | 2 +- src/main/java/world/bentobox/bskyblock/Settings.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 4d4f9a9..8f4ebf7 100644 --- a/pom.xml +++ b/pom.xml @@ -59,7 +59,7 @@ 2.0.2 1.16.1-R0.1-SNAPSHOT - 1.16.0 + 1.16.1 ${build.version}-SNAPSHOT diff --git a/src/main/java/world/bentobox/bskyblock/Settings.java b/src/main/java/world/bentobox/bskyblock/Settings.java index 4f7eccd..9b6e39c 100644 --- a/src/main/java/world/bentobox/bskyblock/Settings.java +++ b/src/main/java/world/bentobox/bskyblock/Settings.java @@ -191,7 +191,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.14.4") private boolean makeNetherPortals = false; // End @@ -206,7 +206,7 @@ public class Settings implements WorldSettings { @ConfigComment("This option indicates if obsidian platform in the end should be generated") @ConfigComment("when player enters the end world.") - @ConfigEntry(path = "world.end.create-obsidian-platform", since = "1.16") + @ConfigEntry(path = "world.end.create-obsidian-platform", since = "1.14.4") private boolean makeEndPortals = false; @ConfigEntry(path = "world.end.dragon-spawn", experimental = true)