diff --git a/project/src/controllers/RepeatableQuestController.ts b/project/src/controllers/RepeatableQuestController.ts index 10503c18..1555b70a 100644 --- a/project/src/controllers/RepeatableQuestController.ts +++ b/project/src/controllers/RepeatableQuestController.ts @@ -169,7 +169,7 @@ export class RepeatableQuestController { currentRepeatableQuestType.changeRequirement[quest._id] = { changeCost: quest.changeCost, - changeStandingCost: quest.changeStandingCost + changeStandingCost: this.randomUtil.getArrayValue([0, 0.01]) }; } @@ -371,7 +371,7 @@ export class RepeatableQuestController currentRepeatablePool.activeQuests.push(newRepeatableQuest); currentRepeatablePool.changeRequirement[newRepeatableQuest._id] = { changeCost: newRepeatableQuest.changeCost, - changeStandingCost: newRepeatableQuest.changeStandingCost + changeStandingCost: this.randomUtil.getArrayValue([0, 0.01]) }; }