From e2fe4060176148ae8b153a817a2a5464b3cc5c21 Mon Sep 17 00:00:00 2001 From: Sainan <63328889+Sainan@users.noreply.github.com> Date: Mon, 5 May 2025 18:03:53 -0700 Subject: [PATCH] fix: always use rotation A for Profit-Taker bounty rewards (#1981) Closes #1964 Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/1981 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com> --- src/services/missionInventoryUpdateService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/missionInventoryUpdateService.ts b/src/services/missionInventoryUpdateService.ts index ce9920c80..9a8d770b8 100644 --- a/src/services/missionInventoryUpdateService.ts +++ b/src/services/missionInventoryUpdateService.ts @@ -1452,7 +1452,7 @@ function getRandomMissionDrops( if (job.xpAmounts.length > 1) { rotations = [RewardInfo.JobStage! % (job.xpAmounts.length - 1)]; } else { - rotations = [RewardInfo.JobStage!]; + rotations = [0]; } if ( RewardInfo.Q &&