From 843320d268371347ffb2340b8ed016d7beef652f Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Tue, 14 Oct 2025 12:18:11 -0700 Subject: [PATCH] Update radio.py --- modules/radio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/radio.py b/modules/radio.py index 6f6a6d4..c734d00 100644 --- a/modules/radio.py +++ b/modules/radio.py @@ -152,7 +152,7 @@ def checkVoxTrapWords(text): for word in words: if word in botMethods: logger.debug(f"RadioMon: VOX found bot method '{word}' in new_text '{new_text}', calling with '{new_text}'") - return botMethods[word](0,0,0) + return botMethods[word]() return None except Exception as e: logger.debug(f"RadioMon: Error in checkVoxTrapWords: {e}")