aboutsummaryrefslogtreecommitdiff
path: root/src/esieequest/controller/commands/InventoryCommand.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/esieequest/controller/commands/InventoryCommand.java')
-rw-r--r--src/esieequest/controller/commands/InventoryCommand.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/esieequest/controller/commands/InventoryCommand.java b/src/esieequest/controller/commands/InventoryCommand.java
index ff7a341..0f95ead 100644
--- a/src/esieequest/controller/commands/InventoryCommand.java
+++ b/src/esieequest/controller/commands/InventoryCommand.java
@@ -13,7 +13,7 @@ public class InventoryCommand implements Executable {
13 @Override 13 @Override
14 public void execute(final String argument, final Game game, final Viewable view) { 14 public void execute(final String argument, final Game game, final Viewable view) {
15 15
16 view.echo(game.getPlayer().listItemsNamesString()); 16 view.echo(game.getPlayer().listItemsNamesString() + game.getPlayer().getWeightString());
17 17
18 } 18 }
19 19