From 2bb13193c574233a07812b60b73f9f2f3f2a3531 Mon Sep 17 00:00:00 2001 From: Matthieu - Greep Date: Sat, 19 Oct 2024 19:08:43 +0200 Subject: [PATCH] Changing RMT notification color to violet (fixes #94) --- src/Utils/RMC/RMT.as | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Utils/RMC/RMT.as b/src/Utils/RMC/RMT.as index c58d037..9a13e36 100644 --- a/src/Utils/RMC/RMT.as +++ b/src/Utils/RMC/RMT.as @@ -125,7 +125,7 @@ class RMT : RMC @currentMap = MX::MapInfo(res); Log::Trace("RMT: Random map: " + currentMap.Name + " (" + currentMap.TrackID + ")"); seenMaps[currentMap.TrackUID] = currentMap.TrackUID; - UI::ShowNotification(Icons::InfoCircle + " RMT - Information on map switching", "Nadeo prevent sometimes when switching map too often and will not change map.\nIf after 10 seconds the podium screen is not shown, you can start a vote to change to next map in the game pause menu.", Text::ParseHexColor("#991703")); + UI::ShowNotification(Icons::InfoCircle + " RMT - Information on map switching", "Nadeo prevent sometimes when switching map too often and will not change map.\nIf after 10 seconds the podium screen is not shown, you can start a vote to change to next map in the game pause menu.", Text::ParseHexColor("#420399")); if (!MXNadeoServicesGlobal::CheckIfMapExistsAsync(currentMap.TrackUID)) { Log::Trace("RMT: Map is not on NadeoServices, retrying..."); @@ -217,7 +217,7 @@ class RMT : RMC @currentMap = nextMap; @nextMap = null; Log::Trace("RMT: Random map: " + currentMap.Name + " (" + currentMap.TrackID + ")"); - UI::ShowNotification(Icons::InfoCircle + " RMT - Information on map switching", "Nadeo prevent sometimes when switching map too often and will not change map.\nIf after 10 seconds the podium screen is not shown, you can start a vote to change to next map in the game pause menu.", Text::ParseHexColor("#991703")); + UI::ShowNotification(Icons::InfoCircle + " RMT - Information on map switching", "Nadeo prevent sometimes when switching map too often and will not change map.\nIf after 10 seconds the podium screen is not shown, you can start a vote to change to next map in the game pause menu.", Text::ParseHexColor("#420399")); DataManager::SaveMapToRecentlyPlayed(currentMap); MXNadeoServicesGlobal::ClubRoomSetMapAndSwitchAsync(RMTRoom, currentMap.TrackUID);