From b19fa531cf4d88cd8a983df90d3d3380942e95f2 Mon Sep 17 00:00:00 2001 From: snowleo Date: Mon, 4 Apr 2011 15:38:25 +0000 Subject: [PATCH] [trunk] Clear Inventory: Fix "Player not found" message git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1124 e251c2fe-e539-e718-e476-b85c1f46cddb --- .../com/earth2me/essentials/commands/Commandclearinventory.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandclearinventory.java b/Essentials/src/com/earth2me/essentials/commands/Commandclearinventory.java index de5c11376..3bfaebff2 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandclearinventory.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandclearinventory.java @@ -33,6 +33,7 @@ public class Commandclearinventory extends EssentialsCommand user.sendMessage("§7Inventory of §c" + p.getDisplayName() + "§7 cleared."); user.charge(this); } + return; } throw new Exception("Player not found"); } @@ -79,6 +80,7 @@ public class Commandclearinventory extends EssentialsCommand p.getInventory().clear(); sender.sendMessage("§7Inventory of §c" + p.getDisplayName() + "§7 cleared."); } + return; } throw new Exception("Player not found"); }