]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
fix meteor announcement color (#29058)
authorNemanja <98561806+EmoGarbage404@users.noreply.github.com>
Sat, 15 Jun 2024 23:24:15 +0000 (19:24 -0400)
committerGitHub <noreply@github.com>
Sat, 15 Jun 2024 23:24:15 +0000 (19:24 -0400)
Content.Server/StationEvents/Events/MeteorSwarmSystem.cs

index e085a2e159e1a0835a9454dcece7625fe0d8e432..6a67930c4d2468ff56f323cebc961bed21ec9b0a 100644 (file)
@@ -29,7 +29,7 @@ public sealed class MeteorSwarmSystem : GameRuleSystem<MeteorSwarmComponent>
         component.WaveCounter = component.Waves.Next(RobustRandom);
 
         if (component.Announcement is { } locId)
-            _chat.DispatchGlobalAnnouncement(Loc.GetString(locId), playSound: false, colorOverride: Color.Yellow);
+            _chat.DispatchGlobalAnnouncement(Loc.GetString(locId), playSound: false, colorOverride: Color.Gold);
         _audio.PlayGlobal(component.AnnouncementSound, Filter.Broadcast(), true);
     }