diff options
Diffstat (limited to 'src/esieequest/controller/commands/QuitCommand.java')
-rw-r--r-- | src/esieequest/controller/commands/QuitCommand.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/esieequest/controller/commands/QuitCommand.java b/src/esieequest/controller/commands/QuitCommand.java index 4453597..024b35f 100644 --- a/src/esieequest/controller/commands/QuitCommand.java +++ b/src/esieequest/controller/commands/QuitCommand.java | |||
@@ -15,7 +15,8 @@ public class QuitCommand implements Executable { | |||
15 | public void execute(final String argument, final Game game, final Viewable view) { | 15 | public void execute(final String argument, final Game game, final Viewable view) { |
16 | 16 | ||
17 | view.echo(Text.QUIT.toString()); | 17 | view.echo(Text.QUIT.toString()); |
18 | view.disable(); | 18 | view.disableInput(); |
19 | view.stopMusic(); | ||
19 | 20 | ||
20 | } | 21 | } |
21 | 22 | ||