fix accidental space removal

snap7
Zak Kolar 2021-12-28 20:34:15 -06:00
rodzic 3a7a6e8ad9
commit c3172f43bd
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -82,7 +82,7 @@ IDE_Morph.prototype.getCurrentScene = function () {
IDE_Morph.prototype.switchTo = function (sceneName) {
var scene = detect(this.scenes.itemsArray(), scn => scn.name === sceneName);
if (scene === null) {
throw new Error('cannot find scene ' + sceneName);
throw new Error('cannot find scene ' + sceneName);
}
this.switchToScene(scene);
};