From 6028c013db40a9a487497b8f70021714fc0039e7 Mon Sep 17 00:00:00 2001 From: Alexejhero <32238504+Alexejhero@users.noreply.github.com> Date: Fri, 16 Aug 2024 17:59:02 +0300 Subject: [PATCH] Update pingtracker alpha in-game --- Reactor/Patches/ReactorPingTracker.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Reactor/Patches/ReactorPingTracker.cs b/Reactor/Patches/ReactorPingTracker.cs index 59b6d03..d117cbd 100644 --- a/Reactor/Patches/ReactorPingTracker.cs +++ b/Reactor/Patches/ReactorPingTracker.cs @@ -11,8 +11,8 @@ public static class ReactorPingTracker { private readonly struct ModIdentifier(string modName, string version, bool isDevBuild, Func? shouldShow) { - private static string NormalColor => !AmongUsClient.Instance.IsGameStarted ? "#fff" : "#fff8"; - private static string DevColor => !AmongUsClient.Instance.IsGameStarted ? "#f00" : "#f008"; + private static string NormalColor => !AmongUsClient.Instance.IsGameStarted ? "#fff" : "#fff7"; + private static string DevColor => !AmongUsClient.Instance.IsGameStarted ? "#f00" : "#f007"; public string ModName => modName; public string Text => $"{ModName} {version}";