Fixed issues relating to gift codes with profile modifications

Updated enums to match client formatting and ids
Added `SkillClass` enum

#368
This commit is contained in:
Chomp
2025-06-07 23:08:21 +01:00
parent 2d67d8002b
commit 3a2f68a232
13 changed files with 131 additions and 121 deletions
@@ -648,7 +648,7 @@ public class RepeatableQuestController(
/// <returns>True if unlocked</returns>
protected bool PlayerHasDailyScavQuestsUnlocked(PmcData pmcData)
{
return pmcData?.Hideout?.Areas?.FirstOrDefault(hideoutArea => hideoutArea.Type == HideoutAreas.INTEL_CENTER)
return pmcData?.Hideout?.Areas?.FirstOrDefault(hideoutArea => hideoutArea.Type == HideoutAreas.IntelligenceCenter)
?.Level >=
1;
}