mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-07-11 13:34:00 -04:00
Check for runtime
This commit is contained in:
parent
283804c21c
commit
eca66e9dde
1 changed files with 3 additions and 1 deletions
|
@ -18,7 +18,9 @@ class Scratch3SoundBlocks {
|
|||
}
|
||||
|
||||
this._onTargetCreated = this._onTargetCreated.bind(this);
|
||||
runtime.on('targetWasCreated', this._onTargetCreated);
|
||||
if (this.runtime) {
|
||||
runtime.on('targetWasCreated', this._onTargetCreated);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue