From 10440b3f014bf1f8abc270f9bfadd1c8d566a7d1 Mon Sep 17 00:00:00 2001 From: Ambroise Garel <47314805+akaAgar@users.noreply.github.com> Date: Fri, 25 Jul 2025 21:08:19 +0200 Subject: [PATCH] Changed UTF-8 symbol in menu --- Script/The Universal Mission/SupportAWACS.lua | 2 +- Script/The Universal Mission/WingmenMenu.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Script/The Universal Mission/SupportAWACS.lua b/Script/The Universal Mission/SupportAWACS.lua index dbb9dfb..2f5138d 100644 --- a/Script/The Universal Mission/SupportAWACS.lua +++ b/Script/The Universal Mission/SupportAWACS.lua @@ -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 diff --git a/Script/The Universal Mission/WingmenMenu.lua b/Script/The Universal Mission/WingmenMenu.lua index d4f6e85..1f8e524 100644 --- a/Script/The Universal Mission/WingmenMenu.lua +++ b/Script/The Universal Mission/WingmenMenu.lua @@ -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" })