From 2a7000a2e676a47fe30b52fdad583b6a8c0c76fd Mon Sep 17 00:00:00 2001 From: Kelly Date: Sat, 14 Feb 2026 16:49:59 -0800 Subject: [PATCH] Update hamtest.py --- modules/games/hamtest.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/games/hamtest.py b/modules/games/hamtest.py index a8db98a..fe6090a 100644 --- a/modules/games/hamtest.py +++ b/modules/games/hamtest.py @@ -136,6 +136,9 @@ class HamTest: # remove the game[id] from the list del self.game[id] + # remove the id from the hamtestTracker list if it exists + if id in hamtestTracker: + hamtestTracker.remove(id) return msg hamtestTracker = []