#AIRBOSS - small fix in Numer2Sound etc

This commit is contained in:
Applevangelist
2024-08-27 13:18:53 +02:00
parent f903844059
commit 30f2097d7a
2 changed files with 3 additions and 2 deletions

View File

@@ -15649,7 +15649,7 @@ function AIRBOSS:_Number2Sound( playerData, sender, number, delay )
end
-- Split string into characters.
local numbers = _split( number )
local numbers = _split( tostring(number) )
local wait = 0
for i = 1, #numbers do
@@ -15717,7 +15717,7 @@ function AIRBOSS:_Number2Radio( radio, number, delay, interval, pilotcall )
end
-- Split string into characters.
local numbers = _split( number )
local numbers = _split( tostring(number) )
local wait = 0
for i = 1, #numbers do