mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-24 23:12:24 -05:00
Use '' instead of null
Co-Authored-By: apple502j <33279053+apple502j@users.noreply.github.com>
This commit is contained in:
parent
73968895d8
commit
6c1031c534
1 changed files with 1 additions and 1 deletions
|
@ -143,7 +143,7 @@ class Scratch3SensingBlocks {
|
||||||
));
|
));
|
||||||
|
|
||||||
if (currentlyAsking) {
|
if (currentlyAsking) {
|
||||||
this.runtime.emit('SAY', stopTarget, 'say', null);
|
this.runtime.emit('SAY', stopTarget, 'say', '');
|
||||||
if (this._questionList.length > 0) {
|
if (this._questionList.length > 0) {
|
||||||
this._askNextQuestion();
|
this._askNextQuestion();
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue