Update mesh-bot.py

This commit is contained in:
SpudGunMan
2024-06-18 22:02:52 -07:00
parent 528d145ff3
commit cc884c3239
+2 -2
View File
@@ -173,8 +173,8 @@ def get_node_list():
if interface.nodes:
for node in interface.nodes.values():
#limit list to the last 5 nodes, and ignore own node at 0
if node['num'] != 0:
#limit list to the last 5 nodes, and ignore own
if node['num'] != myNodeNum:
node_list.append(get_name_from_number(node['num']))
if len(node_list) > 5: