Files
OldThink/Content.Server/White/EndOfRoundStats/Command/CommandStatSystem.cs
rhailrake 484c8a8d9b stats (#103)
* OH YES

* хули мне хедкодеру
# Conflicts:
#	Content.Server/Instruments/InstrumentComponent.cs
#	Content.Server/Instruments/InstrumentSystem.cs
#	Content.Shared/Cuffs/SharedCuffableSystem.cs
#	Content.Shared/White/WhiteCVars.cs
#	Resources/Prototypes/tags.yml
2024-01-17 19:13:14 +07:00

31 lines
746 B
C#

using Content.Server.GameTicking;
using Content.Shared.GameTicking;
namespace Content.Server.White.EndOfRoundStats.Command;
public sealed class CommandStatSystem : EntitySystem
{
public List<(string, string)> eorStats = new();
public override void Initialize()
{
base.Initialize();
SubscribeLocalEvent<RoundEndTextAppendEvent>(OnRoundEnd);
SubscribeLocalEvent<RoundRestartCleanupEvent>(OnRoundRestart);
}
private void OnRoundEnd(RoundEndTextAppendEvent ev)
{
foreach (var (stat, color) in eorStats)
{
ev.AddLine($"[color={color}]{stat}[/color]");
}
}
private void OnRoundRestart(RoundRestartCleanupEvent ev)
{
eorStats.Clear();
}
}