Cultist circle:

blacklisted out of season items (christmas/halloween) as rewards
blacklisted currency (dollar/rouble/euro) as rewards
This commit is contained in:
Dev 2024-11-13 11:19:28 +00:00
parent 060c7f0988
commit 7e3ae57e7e
2 changed files with 6 additions and 1 deletions

View File

@ -73,7 +73,11 @@
"directRewardStackSize": {
"exampleParentId": { "min": 1000, "max": 50000 }
},
"rewardItemBlacklist": [],
"rewardItemBlacklist": [
"5696686a4bdc2da3298b456a",
"5449016a4bdc2d6f028b456f",
"569668774bdc2da2298b4568"
],
"additionalRewardItemPool": [],
"currencyRewards": {
"5449016a4bdc2d6f028b456f": { "min": 20, "max": 50 },

View File

@ -464,6 +464,7 @@ export class CircleOfCultistService {
// Merge reward item blacklist with cultist circle blacklist from config
const itemRewardBlacklist = [
...this.seasonalEventService.getInactiveSeasonalEventItems(),
...this.itemFilterService.getItemRewardBlacklist(),
...cultistCircleConfig.rewardItemBlacklist,
];