Fixed weird registration for end worlds (it was more strict than nether) in IWM

This commit is contained in:
Florian CUNY 2019-07-29 21:48:54 +02:00
parent 5de285249f
commit b8e4e2010d
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ public class IslandWorldManager {
registerToMultiverse(gameMode.getNetherWorld());
}
}
if (settings.isEndGenerate() && settings.isEndIslands()) {
if (settings.isEndGenerate()) {
if (!Bukkit.getAllowEnd()) {
// Warn the users that players might not be able to teleport to these worlds later on
plugin.logWarning("'settings.allow-end' is set to 'false' in the bukkit.yml file!");