From 24a73b73c7409664cad4d0e8eb3227603f8b606b Mon Sep 17 00:00:00 2001 From: David Pierron Date: Sun, 3 Aug 2025 19:36:21 +0200 Subject: [PATCH] Updated the currentCallsigns table, because there can be 20 max callsign numbers for some callsign types. --- Script/DCS extensions/UnitCallsignMaker.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Script/DCS extensions/UnitCallsignMaker.lua b/Script/DCS extensions/UnitCallsignMaker.lua index 03163c9..b8ae269 100644 --- a/Script/DCS extensions/UnitCallsignMaker.lua +++ b/Script/DCS extensions/UnitCallsignMaker.lua @@ -139,7 +139,7 @@ do local currentCallsigns = {} for _,i in pairs(CALLSIGN_TYPE) do - currentCallsigns[i] = { 1, 1, 1, 1, 1, 1, 1, 1, 1 } + currentCallsigns[i] = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 } end local function getCallsignTypeByUnitType(unitType)