From 5c6ef0a4e42e48e415bea1f25d3376b0705d9e13 Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Sun, 3 Mar 2024 11:16:17 +0200 Subject: [PATCH] Add missing alt weapons to the list Closes #1684 --- app/modules/in-game-lists/weapon-ids.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/modules/in-game-lists/weapon-ids.ts b/app/modules/in-game-lists/weapon-ids.ts index 11c5744c4..f587c0da3 100644 --- a/app/modules/in-game-lists/weapon-ids.ts +++ b/app/modules/in-game-lists/weapon-ids.ts @@ -79,8 +79,11 @@ export const weaponIdToAltId = new Map< [1010, 1015], [1110, 1115], [2010, 2015], + [3000, 3005], + [4010, 4015], [5010, 5015], [6000, 6005], + [7010, 7015], [8000, 8005], ]); export const altWeaponIdToId = new Map([ @@ -91,8 +94,11 @@ export const altWeaponIdToId = new Map([ [1015, 1010], [1115, 1110], [2015, 2010], + [3005, 3000], + [4015, 4010], [5015, 5010], [6005, 6000], + [7015, 7010], [8005, 8000], ]);