diff --git a/project/src/helpers/HideoutHelper.ts b/project/src/helpers/HideoutHelper.ts index 729589f4..5c05f202 100644 --- a/project/src/helpers/HideoutHelper.ts +++ b/project/src/helpers/HideoutHelper.ts @@ -125,7 +125,6 @@ export class HideoutHelper { recipeId: string, productionTime: number, needFuelForAllProductionTime: boolean, - isCultistCircle = false, ): IProduction { return { Progress: 0, @@ -139,7 +138,6 @@ export class HideoutHelper { NeedFuelForAllProductionTime: needFuelForAllProductionTime, // Used when sending to client needFuelForAllProductionTime: needFuelForAllProductionTime, // used when stored in production.json SkipTime: 0, - sptIsCultistCircle: isCultistCircle, }; } diff --git a/project/src/services/CircleOfCultistService.ts b/project/src/services/CircleOfCultistService.ts index 61163677..60c7d312 100644 --- a/project/src/services/CircleOfCultistService.ts +++ b/project/src/services/CircleOfCultistService.ts @@ -182,9 +182,11 @@ export class CircleOfCultistService { recipeId, this.getCircleCraftTimeSeconds(rewardAmountRoubles, directRewardSettings), false, - true, ); + // Flag as cultist circle for code to pick up later + cultistProduction.sptIsCultistCircle = true; + // Add items player sacrificed cultistProduction.GivenItemsInStart = sacrificedItems;