aboutsummaryrefslogtreecommitdiff
path: root/src/esieequest/controller/commands/TalkCommand.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/esieequest/controller/commands/TalkCommand.java')
-rw-r--r--src/esieequest/controller/commands/TalkCommand.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/esieequest/controller/commands/TalkCommand.java b/src/esieequest/controller/commands/TalkCommand.java
index 228f954..39c4932 100644
--- a/src/esieequest/controller/commands/TalkCommand.java
+++ b/src/esieequest/controller/commands/TalkCommand.java
@@ -19,7 +19,7 @@ public class TalkCommand implements Executable {
19 return; 19 return;
20 } 20 }
21 21
22 view.echo(game.getPlayer().getCurrentSide().getCharacter().talk()); 22 game.getPlayer().getCurrentSide().getCharacter().talk(game, view);
23 23
24 } 24 }
25 25