[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
This commit is contained in:
snowleo 2011-04-04 15:38:25 +00:00
parent 5f177b3b1e
commit b19fa531cf

View File

@ -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");
}