From 530c9ea7315ce814295091f14fbfcca24a7ae42b Mon Sep 17 00:00:00 2001 From: Sven Czarnian Date: Sat, 13 Nov 2021 10:00:54 +0100 Subject: [PATCH] use the weather model as well --- aman/sys/Worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aman/sys/Worker.py b/aman/sys/Worker.py index 6931868..381dcdc 100644 --- a/aman/sys/Worker.py +++ b/aman/sys/Worker.py @@ -143,6 +143,6 @@ class Worker(Thread): # send the sequence to the GUI and Euroscope sequence = self.RecedingHorizonControl.sequence() self.WebUi.sendSequence(self.Icao, sequence) - self.Euroscope.sendSequence(self.Icao, sequence) + self.Euroscope.sendSequence(self.Icao, sequence, self.WeatherModel) self.releaseLock()