Files
tbd-station-14/Content.Shared/Speech/SpeechSystem.cs
2022-02-16 18:23:23 +11:00

21 lines
501 B
C#

using Robust.Shared.GameObjects;
namespace Content.Shared.Speech
{
public sealed class SpeechSystem : EntitySystem
{
public override void Initialize()
{
base.Initialize();
SubscribeLocalEvent<SpeakAttemptEvent>(OnSpeakAttempt);
}
private void OnSpeakAttempt(SpeakAttemptEvent args)
{
if (!TryComp(args.Uid, out SharedSpeechComponent? speech) || !speech.Enabled)
args.Cancel();
}
}
}