aboutsummaryrefslogtreecommitdiff
path: root/src/esieequest/engine/commands/InventoryCommand.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/esieequest/engine/commands/InventoryCommand.java')
-rw-r--r--src/esieequest/engine/commands/InventoryCommand.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/esieequest/engine/commands/InventoryCommand.java b/src/esieequest/engine/commands/InventoryCommand.java
index c427722..9bd72ff 100644
--- a/src/esieequest/engine/commands/InventoryCommand.java
+++ b/src/esieequest/engine/commands/InventoryCommand.java
@@ -2,7 +2,7 @@ package esieequest.engine.commands;
2 2
3import esieequest.game.Game; 3import esieequest.game.Game;
4import esieequest.game.Text; 4import esieequest.game.Text;
5import esieequest.ui.Viewable; 5import esieequest.ui.View;
6 6
7/** 7/**
8 * Prints the list of the items in the Player's inventory. 8 * Prints the list of the items in the Player's inventory.
@@ -12,7 +12,7 @@ import esieequest.ui.Viewable;
12public class InventoryCommand implements Executable { 12public class InventoryCommand implements Executable {
13 13
14 @Override 14 @Override
15 public void execute(final String argument, final Game game, final Viewable view) { 15 public void execute(final String argument, final Game game, final View view) {
16 16
17 if (!argument.isEmpty()) { 17 if (!argument.isEmpty()) {
18 view.echo(Text.TOO_MANY_ARGUMENTS.toString()); 18 view.echo(Text.TOO_MANY_ARGUMENTS.toString());