From 415b73d674f4d38c68c879be979032743cb56a77 Mon Sep 17 00:00:00 2001 From: Dev Date: Tue, 21 Mar 2023 14:35:29 +0000 Subject: [PATCH] Feature: Update incrementSkillLevel() call to replace hard coded value with value from globals --- project/src/controllers/HideoutController.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/project/src/controllers/HideoutController.ts b/project/src/controllers/HideoutController.ts index 7ce8ca9e..7de9b430 100644 --- a/project/src/controllers/HideoutController.ts +++ b/project/src/controllers/HideoutController.ts @@ -198,8 +198,7 @@ export class HideoutController } // Add Skill Points Per Area Upgrade - //TODO using a variable for value of increment - this.playerService.incrementSkillLevel(pmcData, SkillTypes.HIDEOUT_MANAGEMENT, 80); + this.playerService.incrementSkillLevel(pmcData, SkillTypes.HIDEOUT_MANAGEMENT, this.databaseServer.getTables().globals.config.SkillsSettings.HideoutManagement.SkillPointsPerAreaUpgrade); return output; }