diff --git a/Core/src/main/java/com/intellectualcrafters/plot/commands/Owner.java b/Core/src/main/java/com/intellectualcrafters/plot/commands/Owner.java index 0c132a3c5..c7d4092d1 100644 --- a/Core/src/main/java/com/intellectualcrafters/plot/commands/Owner.java +++ b/Core/src/main/java/com/intellectualcrafters/plot/commands/Owner.java @@ -54,11 +54,11 @@ public class Owner extends SetCommand { C.INVALID_PLAYER.send(player, value); return false; } + final PlotPlayer other = UUIDHandler.getPlayer(uuid); if (plot.isOwner(uuid)) { - C.ALREADY_OWNER.send(player); + C.ALREADY_OWNER.send(player, MainUtil.getName(uuid)); return false; } - final PlotPlayer other = UUIDHandler.getPlayer(uuid); if (!Permissions.hasPermission(player, C.PERMISSION_ADMIN_COMMAND_SETOWNER)) { if (other == null) { C.INVALID_PLAYER_OFFLINE.send(player, value);