fish-station/Content.Shared/Paper/BlockWritingComponent.cs
SpeltIncorrectyl e86770f5a0
Mime can no longer write on paper without breaking their vow (#35043)
Co-authored-by: Simon <63975668+Simyon264@users.noreply.github.com>
2025-02-26 10:11:59 +01:00

17 lines
496 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Paper;
/// <summary>
/// An entity with this component cannot write on paper.
/// </summary>
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
public sealed partial class BlockWritingComponent : Component
{
/// <summary>
/// What message is displayed when the entity fails to write?
/// </summary>
[DataField]
[AutoNetworkedField]
public LocId FailWriteMessage = "paper-component-illiterate";
}