Merge pull request #14 from VEAF/davidp57/bug-callsigns

Updated the currentCallsigns table, because there can be 20 max callsign numbers for some callsign types.
This commit is contained in:
Ambroise Garel 2025-08-03 19:42:06 +02:00 committed by GitHub
commit b4701a98e2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -143,7 +143,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)