Skip to content

Commit 4e7820c

Browse files
author
Justin
committed
Add missing .listen()
Signed-off-by: Justin <[email protected]>
1 parent 959b933 commit 4e7820c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: games/MixMaster/lambda/custom/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ function getPrompt(speechOutput) {
153153
var audio = songs[stage];
154154
speechOutput += "Think about what " + data.mix[0] + " and " + data.mix[1] + " could make. <audio src='" + audio + "' /> What do they make?";
155155

156-
this.response.speak(speechOutput);
156+
this.response.speak(speechOutput).listen("What do " + data.mix[0] + " and " + data.mix[1] + " make?");
157157
this.emit(':responseReady');
158158
}
159159

0 commit comments

Comments
 (0)