From 743baac94525030ed37659c78bab285f49bd69ee Mon Sep 17 00:00:00 2001 From: Applevangelist Date: Tue, 16 Apr 2024 16:01:43 +0200 Subject: [PATCH] Small fix for callsign not traversing from Squadron to Flightgroup --- Moose Development/Moose/Ops/Cohort.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Moose Development/Moose/Ops/Cohort.lua b/Moose Development/Moose/Ops/Cohort.lua index 5ed60451c..0d25c9c5d 100644 --- a/Moose Development/Moose/Ops/Cohort.lua +++ b/Moose Development/Moose/Ops/Cohort.lua @@ -505,6 +505,9 @@ end function COHORT:SetCallsign(Callsign, Index) self.callsignName=Callsign self.callsignIndex=Index + self.callsign={} + self.callsign.NumberSquad=Callsign + self.callsign.NumberGroup=Index return self end