Introducing the magical I variable

This commit is contained in:
2023-08-04 10:43:37 +02:00
parent beecf49344
commit 44ee91a433
5 changed files with 45 additions and 33 deletions

View File

@ -427,7 +427,10 @@ export class Editor {
}
}
});
tryEvaluate(this, this.universes[this.selected_universe.toString()].init)
tryEvaluate(
this,
this.universes[this.selected_universe.toString()].init,
)
}
get note_buffer() {
@ -617,7 +620,9 @@ export class Editor {
this.updateEditorView();
// Evaluating the initialisation script for the selected universe
tryEvaluate(this, this.universes[this.selected_universe.toString()].init)
tryEvaluate(this,
this.universes[this.selected_universe.toString()].init,
)
}
openSettingsModal(): void {