Files
wwdpublic/Content.Shared/Paper/BlockWritingComponent.cs
SpeltIncorrectyl 69b65ec514 Mime can no longer write on paper without breaking their vow (#35043)
Co-authored-by: Simon <63975668+Simyon264@users.noreply.github.com>

(cherry picked from commit e86770f5a03231e3189920c5d7ad93542d48e922)
2025-07-20 14:18:34 +10:00

18 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";
}