Updated the currentCallsigns table, because there can be 20 max callsign numbers for some callsign types.

This commit is contained in:
David Pierron 2025-08-03 19:36:21 +02:00
parent 33f8986317
commit 24a73b73c7

View File

@ -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)