diff --git a/src/quest_editor/controllers/QuestEditorToolBarController.ts b/src/quest_editor/controllers/QuestEditorToolBarController.ts index 5931e974..716b5ecf 100644 --- a/src/quest_editor/controllers/QuestEditorToolBarController.ts +++ b/src/quest_editor/controllers/QuestEditorToolBarController.ts @@ -234,7 +234,17 @@ export class QuestEditorToolBarController extends Controller { }; set_version = (version: Version): void => { - this._version.val = version; + // We only support GC and BB at the moment. + switch (version) { + case Version.DC: + case Version.GC: + this._version.val = Version.GC; + break; + case Version.PC: + case Version.BB: + this._version.val = Version.BB; + break; + } }; debug = (): void => { diff --git a/src/quest_editor/gui/QuestEditorToolBarView.ts b/src/quest_editor/gui/QuestEditorToolBarView.ts index 9ff7e196..ea05405c 100644 --- a/src/quest_editor/gui/QuestEditorToolBarView.ts +++ b/src/quest_editor/gui/QuestEditorToolBarView.ts @@ -14,7 +14,7 @@ import { View } from "../../core/gui/View"; import { Dialog } from "../../core/gui/Dialog"; import { TextInput } from "../../core/gui/TextInput"; import "./QuestEditorToolBarView.css"; -import { Version, VERSIONS } from "../../core/data_formats/parsing/quest/Version"; +import { Version } from "../../core/data_formats/parsing/quest/Version"; export class QuestEditorToolBarView extends View { private readonly toolbar: ToolBar; @@ -130,7 +130,7 @@ export class QuestEditorToolBarView extends View { const version_select = this.disposable( new Select({ label: "Version:", - items: VERSIONS, + items: [Version.GC, Version.BB], selected: ctrl.version, to_label: version => { switch (version) { diff --git a/version.txt b/version.txt index 21e72e8a..95f9650f 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -48 +49