From 43fd78e4669717c085113fbf68ed865fd32625b5 Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Sat, 25 Apr 2020 19:36:19 +0200 Subject: [PATCH] Fixed bug in error message in QuestEditorToolBarController. --- src/quest_editor/controllers/QuestEditorToolBarController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/quest_editor/controllers/QuestEditorToolBarController.ts b/src/quest_editor/controllers/QuestEditorToolBarController.ts index 2832cf99..8f0ad9ec 100644 --- a/src/quest_editor/controllers/QuestEditorToolBarController.ts +++ b/src/quest_editor/controllers/QuestEditorToolBarController.ts @@ -186,7 +186,7 @@ export class QuestEditorToolBarController extends Controller { } this.set_filename(basename(bin.name || dat.name)); } else { - throw new Error("Please select one .bin and one .dat file."); + throw new Error("Please select one .qst file or one .bin and one .dat file."); } }