diff --git a/src/main/java/world/bentobox/bentobox/managers/island/NewIsland.java b/src/main/java/world/bentobox/bentobox/managers/island/NewIsland.java index 05efdd2c5..50e739ae9 100644 --- a/src/main/java/world/bentobox/bentobox/managers/island/NewIsland.java +++ b/src/main/java/world/bentobox/bentobox/managers/island/NewIsland.java @@ -149,7 +149,7 @@ public class NewIsland { plugin.getPlayers().clearHomeLocations(world, user.getUniqueId()); // Set home location - plugin.getPlayers().setHomeLocation(user, next.add(0.5D, 0, 0.5D), 1); + plugin.getPlayers().setHomeLocation(user, new Location(next.getWorld(), next.getX() + 0.5D, next.getY(), next.getZ() + 0.5D), 1); // Save the player so that if the server crashes weird things won't happen plugin.getPlayers().save(user.getUniqueId());