From 879d14184482cc6ca5262c83b779809f7b868d06 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Sun, 23 Feb 2025 19:14:32 -0800 Subject: [PATCH] Update mesh_bot.py --- mesh_bot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mesh_bot.py b/mesh_bot.py index 40fb78e..8cd715e 100755 --- a/mesh_bot.py +++ b/mesh_bot.py @@ -702,9 +702,9 @@ def handleHamtest(message, nodeID, deviceID): if not index: hamtestTracker.append({"nodeID": nodeID,"last_played": time.time()}) - if "end" in response: + if "end" in response[0].lower(): msg = hamtest.endGame(nodeID) - elif "score" in response: + elif "score" in response[0].lower(): msg = hamtest.getScore(nodeID) if "hamtest" in response[0].lower():