From 0affb028a01ac390ec1e6cd8f40d34639c8d240c Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Sat, 3 Dec 2022 02:09:18 +0200 Subject: [PATCH] Build Analyzer: Big ink tank to CJR --- app/modules/analyzer/stats.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/modules/analyzer/stats.ts b/app/modules/analyzer/stats.ts index 113ae9704..7d8ee2ec2 100644 --- a/app/modules/analyzer/stats.ts +++ b/app/modules/analyzer/stats.ts @@ -138,8 +138,11 @@ export function buildStats({ } const SPLATTERSHOT_JR_ID = 10; +const CUSTOM_SPLATTERSHOT_JR_ID = 11; function inkTankSize(weaponSplId: StatFunctionInput["weaponSplId"]) { - if (weaponSplId === SPLATTERSHOT_JR_ID) return 1.1; + if ([SPLATTERSHOT_JR_ID, CUSTOM_SPLATTERSHOT_JR_ID].includes(weaponSplId)) { + return 1.1; + } return 1; }