From e950fb0e78d528de70f2de26e5565176309850fd Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Sat, 25 Apr 2020 20:43:14 +0200 Subject: [PATCH] Updated FEATURES.md. --- FEATURES.md | 14 +++----------- src/quest_editor/stores/AsmEditorStore.ts | 2 +- 2 files changed, 4 insertions(+), 12 deletions(-) diff --git a/FEATURES.md b/FEATURES.md index 9ad27a3c..16527c53 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -1,6 +1,6 @@ # Feature Overview -Features that are in ***bold italics*** are planned and not yet implemented. +Features that are in ***bold italics*** are planned but not yet implemented. ## Create New Quest @@ -11,7 +11,7 @@ Features that are in ***bold italics*** are planned and not yet implemented. - Open file button - Support for .qst (BB, ***GC***, ***PC***, ***DC***) -- ***Notify user when and why quest loading fails*** +- Notify user when and why quest loading fails - ***Deal with missing DAT or BIN file in QST container file*** ## Save Quest @@ -151,14 +151,6 @@ Features that are in ***bold italics*** are planned and not yet implemented. ## Bugs -- [3D View](#3d-view): Some objects are only partially loaded (they consist of several separate models), e.g.: - - Random Type Box 1 - - Fixed Type Box - - Forest Switch - - Laser Fence - - Forest Laser - - Switch (none door) - - Energy Barrier - - Teleporter +- [NPC/Object Manipulation](#npcobject-manipulation): Entities in NPCs/Objects panels with additive blending aren't rendered correctly. - [Load Quest](#load-quest): Can't parse quest 125 White Day - [Script Assembly Editor](#script-assembly-editor): Go to definition doesn't work in RT (#231) diff --git a/src/quest_editor/stores/AsmEditorStore.ts b/src/quest_editor/stores/AsmEditorStore.ts index 54a78165..6ea9f4f7 100644 --- a/src/quest_editor/stores/AsmEditorStore.ts +++ b/src/quest_editor/stores/AsmEditorStore.ts @@ -98,7 +98,7 @@ export class AsmEditorStore extends Store { readonly undo = new SimpleUndo( "Text edits", () => this._did_undo.emit({ value: "asm undo" }), - () => this._did_redo.emit({ value: "asm undo" }), + () => this._did_redo.emit({ value: "asm redo" }), ); readonly inline_args_mode: Property = this._inline_args_mode; readonly has_issues: Property = assembly_analyser.issues.map(