16 lines
388 B
C#
16 lines
388 B
C#
using Content.Server.Speech;
|
|
using Content.Shared.Chemistry.Reagent;
|
|
|
|
namespace Content.Server.Chemistry.ReagentEffects;
|
|
|
|
/// <summary>
|
|
/// Forces someone to scream their lungs out.
|
|
/// </summary>
|
|
public sealed class Scream : ReagentEffect
|
|
{
|
|
public override void Effect(ReagentEffectArgs args)
|
|
{
|
|
EntitySystem.Get<VocalSystem>().TryScream(args.SolutionEntity);
|
|
}
|
|
}
|