From f84bec6d4c3e382504530dec1276a42679cce81a Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Thu, 11 Jul 2024 00:39:17 -0700 Subject: [PATCH] Update mesh_bot.py --- mesh_bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesh_bot.py b/mesh_bot.py index be91d75..3811096 100755 --- a/mesh_bot.py +++ b/mesh_bot.py @@ -132,7 +132,7 @@ def auto_response(message, snr, rssi, hop, message_from_id): elif "solar" in message.lower(): bot_response = drap_xray_conditions() + "\n" + solar_conditions() elif "lheard" in message.lower() or "sitrep" in message.lower(): - bot_response = "Last 5 nodes heard:\n" + str(get_node_list()) + bot_response = "Last heard:\n" + str(get_node_list()) elif "whereami" in message.lower(): location = get_node_location(message_from_id) where = where_am_i(str(location[0]),str(location[1]))