diff --git a/Libraries/SPTarkov.Server.Core/Controllers/RepeatableQuestController.cs b/Libraries/SPTarkov.Server.Core/Controllers/RepeatableQuestController.cs index ae94b277..0b183704 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/RepeatableQuestController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/RepeatableQuestController.cs @@ -137,7 +137,7 @@ public class RepeatableQuestController( var repeatableConfig = QuestConfig.RepeatableQuests.FirstOrDefault(config => config.Name == repeatablesOfTypeInProfile.Name); // If the configuration dictates to replace with the same quest type, adjust the available quest types - if (repeatableConfig?.KeepDailyQuestTypeOnReplacement is not null) + if (repeatableConfig?.KeepDailyQuestTypeOnReplacement is not null && repeatableConfig.KeepDailyQuestTypeOnReplacement) { repeatableConfig.Types = [questToReplace.Type.ToString()]; }