Skip to content

Commit

Permalink
Add Landing rate to discord broadcast (nabeelio#1825)
Browse files Browse the repository at this point in the history
* Add Landing rate to discord broadcast

Hello, In the last few days I implemented this option in my VA and my pilots liked it, that is why I am sending this change for other VA.

* Landing rate in Discord broadcast
  • Loading branch information
rcomunica authored Jun 21, 2024
1 parent afdd3db commit 2c110ba
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions app/Notifications/Messages/Broadcast/PirepStatusChanged.php
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,10 @@ public function createFields(Pirep $pirep): array
'Flight Time' => Time::minutesToTimeString($pirep->flight_time),
];

if($pirep->landing_rate){
$fields['Landing Rate'] = $pirep->landing_rate."ft/min";
}

// Show the distance, but include the planned distance if it's been set
$fields['Distance'] = [];
if ($pirep->distance) {
Expand Down

0 comments on commit 2c110ba

Please sign in to comment.