|
1 | 1 | package world.bentobox.skygrid; |
2 | 2 |
|
3 | | -import java.util.*; |
| 3 | +import java.util.ArrayList; |
| 4 | +import java.util.Collections; |
| 5 | +import java.util.EnumMap; |
| 6 | +import java.util.HashMap; |
| 7 | +import java.util.HashSet; |
| 8 | +import java.util.List; |
| 9 | +import java.util.Map; |
| 10 | +import java.util.Objects; |
| 11 | +import java.util.Set; |
4 | 12 |
|
5 | 13 | import org.bukkit.Difficulty; |
6 | 14 | import org.bukkit.GameMode; |
|
14 | 22 | import world.bentobox.bentobox.api.flags.Flag; |
15 | 23 | import world.bentobox.bentobox.database.objects.adapters.Adapter; |
16 | 24 | import world.bentobox.bentobox.database.objects.adapters.FlagBooleanSerializer; |
17 | | -import world.bentobox.bentobox.database.objects.adapters.FlagSerializer; |
18 | | -import world.bentobox.bentobox.database.objects.adapters.FlagSerializer2; |
19 | 25 |
|
20 | 26 | /** |
21 | 27 | * All the settings are here |
@@ -105,7 +111,7 @@ public class Settings implements WorldSettings { |
105 | 111 | @ConfigComment("This option indicates if obsidian platform in the end should be generated") |
106 | 112 | @ConfigComment("when player enters the end world.") |
107 | 113 | @ConfigEntry(path = "world.end.create-obsidian-platform", since = "1.16") |
108 | | - private boolean makeEndPortals = false; |
| 114 | + private boolean makeEndPortals = true; |
109 | 115 |
|
110 | 116 | /* SkyGrid */ |
111 | 117 | @ConfigComment("The probability of a frame being created in a chunk. Frames are always at y=0.") |
@@ -722,6 +728,7 @@ public void setWorldFlags(Map<String, Boolean> worldFlags) { |
722 | 728 | * @return the defaultIslandFlags |
723 | 729 | * @deprecated since 1.21 |
724 | 730 | */ |
| 731 | + @Deprecated |
725 | 732 | @Override |
726 | 733 | public Map<Flag, Integer> getDefaultIslandFlags() { |
727 | 734 | return Collections.emptyMap(); |
@@ -749,6 +756,7 @@ public void setDefaultIslandFlagNames(Map<String, Integer> defaultIslandFlags) { |
749 | 756 | * @return the defaultIslandSettings |
750 | 757 | * @deprecated since 1.21 |
751 | 758 | */ |
| 759 | + @Deprecated |
752 | 760 | @Override |
753 | 761 | public Map<Flag, Integer> getDefaultIslandSettings() { |
754 | 762 | return Collections.emptyMap(); |
|
0 commit comments