Fixed bug in entity translation undo/redo.

This commit is contained in:
Daan Vanden Bosch 2019-08-29 18:42:44 +02:00
parent 762591bf24
commit 31c51ca83d

View File

@ -20,6 +20,8 @@ export class TranslateEntityAction implements Action {
}
undo(): void {
quest_editor_store.set_selected_entity(this.entity);
if (this.world) {
this.entity.set_world_position(this.old_position);
} else {
@ -29,11 +31,11 @@ export class TranslateEntityAction implements Action {
if (this.old_section) {
this.entity.set_section(this.old_section);
}
quest_editor_store.set_selected_entity(this.entity);
}
redo(): void {
quest_editor_store.set_selected_entity(this.entity);
if (this.world) {
this.entity.set_world_position(this.new_position);
} else {
@ -43,7 +45,5 @@ export class TranslateEntityAction implements Action {
if (this.new_section) {
this.entity.set_section(this.new_section);
}
quest_editor_store.set_selected_entity(this.entity);
}
}