From f803bc798c64659962e9c2c20163fb8c40486e6f Mon Sep 17 00:00:00 2001 From: boy0001 Date: Thu, 8 Jan 2015 18:57:15 +1100 Subject: [PATCH] Fixed setowner --- .../java/com/intellectualcrafters/plot/commands/SetOwner.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/SetOwner.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/SetOwner.java index 7b494d4fa..16ef018d4 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/SetOwner.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/SetOwner.java @@ -75,7 +75,7 @@ import java.util.UUID; UUID uuid = getUUID(args[0]); if (uuid == null) { - PlayerFunctions.sendMessage(plr, C.INVALID_PLAYER, args[1]); + PlayerFunctions.sendMessage(plr, C.INVALID_PLAYER, args[0]); return false; }