# Make SRS say TACAN not T A C A N

This commit is contained in:
Applevangelist 2022-12-29 16:32:29 +01:00
parent 193f83fcc3
commit 65f8da77d2

View File

@ -2416,6 +2416,8 @@ function ATIS:onafterReport( From, Event, To, Text )
local text = string.gsub( text, "mmHg", "millimeters of Mercury" )
local text = string.gsub( text, "hPa", "hectopascals" )
local text = string.gsub( text, "m/s", "meters per second" )
local text = string.gsub( text, "TACAN", "tackan" )
local text = string.gsub( text, "FARP", "farp" )
-- Replace ";" by "."
local text = string.gsub( text, ";", " . " )