improve applyPlayerUpgradesBonuses() debug messaging

This commit is contained in:
Dev 2024-01-29 09:59:22 +00:00
parent 8fe2508e00
commit e579cac907

View File

@ -163,7 +163,7 @@ export class HideoutHelper
// Add bonus to player bonuses array in profile
// EnergyRegeneration, HealthRegeneration, RagfairCommission, ScavCooldownTimer, SkillGroupLevelingBoost, ExperienceRate, QuestMoneyReward etc
this.logger.debug(`Adding bonus: ${bonus.type} to profile, value: ${bonus.value}`);
this.logger.debug(`Adding bonus: ${bonus.type} to profile, value: ${bonus.value ?? ""}`);
pmcData.Bonuses.push(bonus);
}