From ce39f213f9b673e92c199cb05d19aafcfd805ebc Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Fri, 27 Jan 2023 00:48:57 +0200 Subject: [PATCH] Fix RP calculation (no QR reduction if only own RP) --- app/features/build-analyzer/core/stats.ts | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/app/features/build-analyzer/core/stats.ts b/app/features/build-analyzer/core/stats.ts index 2442c1cb5..a2b2c5f83 100644 --- a/app/features/build-analyzer/core/stats.ts +++ b/app/features/build-analyzer/core/stats.ts @@ -626,13 +626,12 @@ function respawnTime( abilityPoints: args.abilityPoints, ability: QUICK_RESPAWN_TIME_ABILITY, }); - const abilityPoints = - splattedByRP || hasRespawnPunisher - ? qrApAfterRespawnPunish({ - ap, - hasTacticooler: args.hasTacticooler, - }) - : ap; + const abilityPoints = hasRespawnPunisher + ? qrApAfterRespawnPunish({ + ap, + hasTacticooler: args.hasTacticooler, + }) + : ap; const chase = abilityPointsToEffects({ abilityPoints,