diff --git a/project/src/helpers/QuestHelper.ts b/project/src/helpers/QuestHelper.ts index d0928462..bc4bf205 100644 --- a/project/src/helpers/QuestHelper.ts +++ b/project/src/helpers/QuestHelper.ts @@ -1004,12 +1004,13 @@ export class QuestHelper { // Calculate hideout management bonus as a percentage (up to 51% bonus) const hideoutManagementSkill = this.profileHelper.getSkillFromProfile(pmcData, SkillTypes.HIDEOUT_MANAGEMENT); - // 5100 becomes 0.51, add 1 to it, 1.51, multiply the moneyreward bonus by it (e.g. 15 x 51) - // We multiply the money reward bonuses by the hideout management skill multipler, givin the new result + // 5100 becomes 0.51, add 1 to it, 1.51 + // We multiply the money reward bonuses by the hideout management skill multipler, giving the new result const hideoutManagementBonusMultipler = hideoutManagementSkill ? 1 + hideoutManagementSkill.Progress / 10000 : 1; + // e.g 15% * 1.4 return moneyRewardBonusPercent * hideoutManagementBonusMultipler; } diff --git a/project/src/services/LocationLifecycleService.ts b/project/src/services/LocationLifecycleService.ts index b3ee9f31..f53beba8 100644 --- a/project/src/services/LocationLifecycleService.ts +++ b/project/src/services/LocationLifecycleService.ts @@ -445,7 +445,6 @@ export class LocationLifecycleService { pmcProfile.SurvivorClass = postRaidProfile.SurvivorClass; pmcProfile.Achievements = postRaidProfile.Achievements; pmcProfile.Quests = postRaidProfile.Quests; - pmcProfile.InsuredItems = postRaidProfile.InsuredItems; pmcProfile.Info.Experience = postRaidProfile.Info.Experience;