diff --git a/project/src/controllers/RepeatableQuestController.ts b/project/src/controllers/RepeatableQuestController.ts index de10d1ed..b87a643e 100644 --- a/project/src/controllers/RepeatableQuestController.ts +++ b/project/src/controllers/RepeatableQuestController.ts @@ -532,6 +532,10 @@ export class RepeatableQuestController { newRepeatableQuest.side = repeatableConfig.side; repeatablesInProfile.activeQuests.push(newRepeatableQuest); + this.logger.debug( + `Removing: ${repeatableConfig.name} quest: ${questToReplace._id} from trader: ${questToReplace.traderId} as its been replaced`, + ); + // Find quest we're replacing in pmc profile quests array and remove it this.questHelper.findAndRemoveQuestFromArrayIfExists(questToReplace._id, pmcData.Quests);