Display the next ask

This commit is contained in:
apple502j 2018-12-11 18:39:09 +09:00
parent aea7000917
commit 73968895d8

View file

@ -143,8 +143,12 @@ class Scratch3SensingBlocks {
));
if (currentlyAsking) {
this.runtime.emit('SAY', stopTarget, null, '');
this.runtime.emit('QUESTION', null);
this.runtime.emit('SAY', stopTarget, 'say', null);
if (this._questionList.length > 0) {
this._askNextQuestion();
} else {
this.runtime.emit('QUESTION', null);
}
}
}