#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

@ -9,6 +9,7 @@
-- @module AI.AI_Air -- @module AI.AI_Air
-- @image MOOSE.JPG -- @image MOOSE.JPG
---
-- @type AI_AIR -- @type AI_AIR
-- @extends Core.Fsm#FSM_CONTROLLABLE -- @extends Core.Fsm#FSM_CONTROLLABLE

View File

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