From 446f0336b6ed629e48b9c8aa60ecd7d3d6792046 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Fri, 20 Sep 2024 00:58:07 -0700 Subject: [PATCH] Update mesh_bot.py --- mesh_bot.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mesh_bot.py b/mesh_bot.py index 0129054..c6948a6 100755 --- a/mesh_bot.py +++ b/mesh_bot.py @@ -595,7 +595,7 @@ def onReceive(packet, interface): playingGame = True game = "DopeWars" if llm_enabled: - logger.debug(f"System: LLM Disabled for {message_from_id} for duration of game") + logger.debug(f"System: LLM Disabled for {message_from_id} for duration of Dope Wars") #if time exceeds 8 hours reset the player if dwPlayerTracker[i].get('last_played') < (time.time() - GAMEDELAY): @@ -612,7 +612,7 @@ def onReceive(packet, interface): playingGame = True game = "LemonadeStand" if llm_enabled: - logger.debug(f"System: LLM Disabled for {message_from_id} for duration of game") + logger.debug(f"System: LLM Disabled for {message_from_id} for duration of Lemonade Stand") #if time exceeds 8 hours reset the player if lemonadeTracker[i].get('time') < (time.time() - GAMEDELAY): @@ -629,7 +629,7 @@ def onReceive(packet, interface): playingGame = True game = "VideoPoker" if llm_enabled: - logger.debug(f"System: LLM Disabled for {message_from_id} for duration of game") + logger.debug(f"System: LLM Disabled for {message_from_id} for duration of VideoPoker") #if time exceeds 8 hours reset the player if vpTracker[i].get('time') < (time.time() - GAMEDELAY): @@ -646,7 +646,7 @@ def onReceive(packet, interface): playingGame = True game = "BlackJack" if llm_enabled: - logger.debug(f"System: LLM Disabled for {message_from_id} for duration of game") + logger.debug(f"System: LLM Disabled for {message_from_id} for duration of BlackJack") #if time exceeds 8 hours reset the player if jackTracker[i].get('time') < (time.time() - GAMEDELAY):