Skip to content

Commit

Permalink
Changing RMT notification color to violet (fixes #94)
Browse files Browse the repository at this point in the history
  • Loading branch information
GreepTheSheep committed Oct 19, 2024
1 parent bc3bf19 commit 2bb1319
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Utils/RMC/RMT.as
Original file line number Diff line number Diff line change
Expand Up @@ -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...");
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 2bb1319

Please sign in to comment.