Files
crystall-punk-14/Content.Server/Vocalization/Components/VocalizerRequiresPowerComponent.cs

10 lines
365 B
C#
Raw Permalink Normal View History

namespace Content.Server.Vocalization.Components;
/// <summary>
/// Used in combination with <see cref="VocalizerComponent"/>.
/// Blocks any attempts to vocalize if the entity has an <see cref="ApcPowerReceiverComponent"/>
/// and is currently unpowered.
/// </summary>
[RegisterComponent]
public sealed partial class VocalizerRequiresPowerComponent : Component;