From b94ecbc9dfb310c7710359f53c73e8b50c1d7cbd Mon Sep 17 00:00:00 2001 From: eli fessler Date: Tue, 25 Oct 2022 21:45:11 -1000 Subject: [PATCH] fix grizzco weapon ID detection --- utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.py b/utils.py index 727f598..ad3b22c 100644 --- a/utils.py +++ b/utils.py @@ -110,7 +110,7 @@ def b64d(string): if "Weapon-" in thing_id: thing_id = thing_id.replace("Weapon-", "") - if len(thing_id) == 5 and thing_id[:2] == "20": # grizzco weapon ID from a hacker + if len(thing_id) == 5 and thing_id[:1] == "2" and thing_id[-3:] == "900": # grizzco weapon ID from a hacker return "" if thing_id[:15] == "VsHistoryDetail" or thing_id[:17] == "CoopHistoryDetail":