diff --git a/project/src/controllers/QuestController.ts b/project/src/controllers/QuestController.ts index 162110ac..27f4d516 100644 --- a/project/src/controllers/QuestController.ts +++ b/project/src/controllers/QuestController.ts @@ -383,11 +383,12 @@ export class QuestController const repeatableSettings = pmcData.RepeatableQuests.find(x => x.name === repeatableQuestProfile.sptRepatableGroupName); const responseData: IPmcDataRepeatableQuest = { - activeQuests: [repeatableQuestProfile], + id: repeatableSettings.id, name: repeatableSettings.name, - inactiveQuests: [], endTime: repeatableSettings.endTime, - changeRequirement: repeatableSettings.changeRequirement + changeRequirement: repeatableSettings.changeRequirement, + activeQuests: [repeatableQuestProfile], + inactiveQuests: [] }; acceptQuestResponse.profileChanges[sessionID].repeatableQuests = [responseData];