Skip to content

Commit

Permalink
Removed workaround as underlying issue has been resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
Chomp committed Dec 13, 2024
1 parent f12a5d3 commit a027ca0
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions project/src/controllers/RepeatableQuestController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -529,13 +529,6 @@ export class RepeatableQuestController {
repeatableConfig.types = [questToReplace.type];
}

// Prevent new repeatable using same trader (except Fence, his quests are fine) - workaround for client error
if (replacedQuestTraderId !== Traders.FENCE) {
repeatableConfig.traderWhitelist = repeatableConfig.traderWhitelist.filter(
(trader) => trader.traderId !== replacedQuestTraderId,
);
}

// Generate meta-data for what type/levelrange of quests can be generated for player
const allowedQuestTypes = this.generateQuestPool(repeatableConfig, pmcData.Info.Level);
const newRepeatableQuest = this.attemptToGenerateRepeatableQuest(
Expand Down

0 comments on commit a027ca0

Please sign in to comment.