From 8d442f58d42b73686b4bf13dfd15b492b09d9e10 Mon Sep 17 00:00:00 2001 From: MattBDev Date: Sat, 26 Nov 2016 12:05:08 -0500 Subject: [PATCH] Fixes #1445 --- .../java/com/intellectualcrafters/plot/commands/Owner.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);