diff options
Diffstat (limited to 'src/esieequest/engine/commands/HelpCommand.java')
-rw-r--r-- | src/esieequest/engine/commands/HelpCommand.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/esieequest/engine/commands/HelpCommand.java b/src/esieequest/engine/commands/HelpCommand.java index 8738a8e..810a24e 100644 --- a/src/esieequest/engine/commands/HelpCommand.java +++ b/src/esieequest/engine/commands/HelpCommand.java | |||
@@ -2,7 +2,7 @@ package esieequest.engine.commands; | |||
2 | 2 | ||
3 | import esieequest.game.Game; | 3 | import esieequest.game.Game; |
4 | import esieequest.game.Text; | 4 | import esieequest.game.Text; |
5 | import esieequest.ui.Viewable; | 5 | import esieequest.ui.View; |
6 | 6 | ||
7 | /** | 7 | /** |
8 | * Prints the available commands. | 8 | * Prints the available commands. |
@@ -12,7 +12,7 @@ import esieequest.ui.Viewable; | |||
12 | public class HelpCommand implements Executable { | 12 | public class HelpCommand 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()); |