From 625c7d030274453d07b8df257dcce259dbee13ba Mon Sep 17 00:00:00 2001 From: KHobbits Date: Tue, 18 Oct 2011 05:35:21 +0100 Subject: [PATCH] Save the ban reason, not the command name. --- Essentials/src/com/earth2me/essentials/commands/Commandban.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandban.java b/Essentials/src/com/earth2me/essentials/commands/Commandban.java index d6387c074..a4a5e2839 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandban.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandban.java @@ -46,7 +46,7 @@ public class Commandban extends EssentialsCommand if (args.length > 1) { banReason = getFinalArg(args, 1); - player.setBanReason(commandLabel); + player.setBanReason(banReason); } else {