We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e90755d + d2410a5 commit 37ba89aCopy full SHA for 37ba89a
src/main/java/world/bentobox/bentobox/managers/IslandsManager.java
@@ -1275,8 +1275,10 @@ else if (!plugin.getSettings().isOverrideSafetyCheck() && island.getWorld() != n
1275
+ island.getRange() + "!\n" + "Island ID in database is " + island.getUniqueId() + ".\n"
1276
+ "Island distance in config.yml cannot be changed mid-game! Fix config.yml or clean database.");
1277
} else {
1278
- // Fix island center if it is off
1279
- fixIslandCenter(island);
+ if (!plugin.getSettings().isOverrideSafetyCheck()) {
+ // Fix island center if it is off
1280
+ fixIslandCenter(island);
1281
+ }
1282
islandCache.addIsland(island, true);
1283
1284
if (island.isSpawn()) {
0 commit comments