From 99528c2bcf373bf058ff6a274078e4b3cc0499e5 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Tue, 14 Oct 2025 10:52:35 -0700 Subject: [PATCH] Update system.py --- modules/system.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/system.py b/modules/system.py index 8740c35..cbc7196 100644 --- a/modules/system.py +++ b/modules/system.py @@ -1429,7 +1429,7 @@ def consumeMetadata(packet, rxNode=0, channel=-1): ): plane_alt = flight_info['altitude'] node_alt = position_data.get('altitude', 0) - if abs(node_alt - plane_alt) <= 600: # within 600m + if abs(node_alt - plane_alt) <= 900: # within 900m msg += f"\n✈️Detected near:\n{flight_info}" send_message(msg, highfly_channel, 0, highfly_interface) # Keep the positionMetadata dictionary at a maximum size