From 13fd0a984c4a2697b51e1623ac2065e7a76b74cc Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Sun, 27 Oct 2019 22:47:38 +0100 Subject: [PATCH] Fixed bug in QuestModel. --- src/quest_editor/model/QuestModel.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/quest_editor/model/QuestModel.ts b/src/quest_editor/model/QuestModel.ts index 0784b2a7..2404cb82 100644 --- a/src/quest_editor/model/QuestModel.ts +++ b/src/quest_editor/model/QuestModel.ts @@ -131,8 +131,8 @@ export class QuestModel { this.objects, ); - this.entities_per_area.observe(this.update_area_variants); - this.map_designations.observe(this.update_area_variants); + this.entities_per_area.observe(this.update_area_variants, { call_now: true }); + this.map_designations.observe(this.update_area_variants, { call_now: true }); } set_id(id: number): this {