From aea7000917a2be637cad55055ff9aeabcd272a19 Mon Sep 17 00:00:00 2001 From: apple502j Date: Sun, 9 Dec 2018 13:14:42 +0900 Subject: [PATCH] Clear ask bubble when stopForTarget --- src/blocks/scratch3_sensing.js | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/blocks/scratch3_sensing.js b/src/blocks/scratch3_sensing.js index ee4a009b4..1200786e5 100644 --- a/src/blocks/scratch3_sensing.js +++ b/src/blocks/scratch3_sensing.js @@ -143,11 +143,8 @@ class Scratch3SensingBlocks { )); if (currentlyAsking) { - if (this._questionList.length > 0) { - this._askNextQuestion(); - } else { - this.runtime.emit('QUESTION', null); - } + this.runtime.emit('SAY', stopTarget, null, ''); + this.runtime.emit('QUESTION', null); } }