Changed UTF-8 symbol in menu

This commit is contained in:
Ambroise Garel 2025-07-25 21:08:19 +02:00
parent 0165dd807c
commit 10440b3f01
2 changed files with 2 additions and 2 deletions

View File

@ -92,7 +92,7 @@ do
function TUM.supportAWACS.createMenu()
if not awacsGroupID then return end -- No AWACS
local rootPath = missionCommands.addSubMenu(" Awacs")
local rootPath = missionCommands.addSubMenu(" Awacs")
missionCommands.addCommand("Bogey dope", rootPath, doCommandBogeyDope, nil)
missionCommands.addCommand("Picture", rootPath, doCommandPicture, nil)
end

View File

@ -58,7 +58,7 @@ do
if TUM.settings.getValue(TUM.settings.id.MULTIPLAYER) then return end -- No wingmen in multiplayer
-- TODO: if WINGMEN_COUNT == 0 then return end
local rootPath = missionCommands.addSubMenu("Flight")
local rootPath = missionCommands.addSubMenu("Flight")
local engagePath = missionCommands.addSubMenu("Engage", rootPath)
missionCommands.addCommand("Bandits", engagePath, radioCommandEngage, { attributes = nil, category = Group.Category.HELICOPTER, radioMessageSuffix = "Bandits" })