diff options
-rw-r--r-- | Essentials/src/com/earth2me/essentials/commands/Commandinvsee.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandinvsee.java b/Essentials/src/com/earth2me/essentials/commands/Commandinvsee.java index 07710d40a..2a730b533 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandinvsee.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandinvsee.java @@ -31,7 +31,8 @@ public class Commandinvsee extends EssentialsCommand { invUser.getInventory().setContents(user.getSavedInventory()); user.setSavedInventory(null); - throw new Exception(Util.i18n("invRestored")); + user.sendMessage(Util.i18n("invRestored")); + throw new NoChargeException(); } if (user.getSavedInventory() == null) |