2023-08-11 03:44:52 +10:00
|
|
|
using Content.Shared.Effects;
|
|
|
|
|
using Robust.Shared.Player;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Effects;
|
|
|
|
|
|
|
|
|
|
public sealed class ColorFlashEffectSystem : SharedColorFlashEffectSystem
|
|
|
|
|
{
|
|
|
|
|
public override void RaiseEffect(Color color, List<EntityUid> entities, Filter filter)
|
|
|
|
|
{
|
2023-09-11 09:42:41 +10:00
|
|
|
RaiseNetworkEvent(new ColorFlashEffectEvent(color, GetNetEntityList(entities)), filter);
|
2023-08-11 03:44:52 +10:00
|
|
|
}
|
|
|
|
|
}
|