silently dismiss flightplan requests when no flightplan exists

This commit is contained in:
Reese Norris
2025-05-23 20:59:05 -07:00
parent 5e1b9ea23d
commit 96b318a5bb

View File

@@ -366,7 +366,6 @@ func (s *Server) handleClientQueryFlightplanRequest(client *Client, packet []byt
fplInfo := targetClient.flightPlan.Load()
if fplInfo == "" {
client.sendError(NoFlightPlanError, "No flightplan for: "+targetCallsign)
return
}