quest status name refactoring

This commit is contained in:
jonathan
2025-08-14 21:54:18 +02:00
parent 8676bbb2f6
commit 03dbc08293
19 changed files with 60 additions and 85 deletions
+2 -2
View File
@@ -17,10 +17,10 @@ public partial class QuestLog : Control
public QuestResource? currentDetailQuest
{
get => QuestManager.Instance!.GetFollowQuest();
get => QuestManager.Instance!.GetActiveQuest();
set
{
QuestManager.Instance!.SetFollowQuest(value); // TODO: fix setup
QuestManager.Instance!.SetActiveQuest(value); // TODO: fix setup
EmitSignalDetailQuestChanged(this);
}
}