mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 14:32:59 -05:00
Display the next ask
This commit is contained in:
parent
aea7000917
commit
73968895d8
1 changed files with 6 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue