Merge remote-tracking branch 'origin/master' into branch

This commit is contained in:
Applevangelist 2024-08-27 18:38:22 +02:00
commit d110ef1340
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

@ -15651,7 +15651,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
@ -15719,7 +15719,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