Skip to content

Commit

Permalink
Fixed addRewardsToCircleContainer adding the reward item to the out…
Browse files Browse the repository at this point in the history
…put object
  • Loading branch information
Chomp committed Feb 1, 2025
1 parent a460470 commit 4bcbca5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions project/src/services/CircleOfCultistService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,7 @@ export class CircleOfCultistService {
cultistCircleStashId,
CircleOfCultistService.circleOfCultistSlotId,
);
// Add item + mods to output and profile inventory
output.profileChanges[sessionId].items.new.push(...itemToAdd);
// Add item + mods to profile inventory, NOT output object (confirmed on live)
pmcData.Inventory.items.push(...itemToAdd);
}
}
Expand Down

0 comments on commit 4bcbca5

Please sign in to comment.