* fix rcd ammo predicting * fix tts preview * cleanups HumanoidProfileEditor * fix double chaplain bible * loadout fixes * fix handlabeler mispredicting * fix resources couldnt be extracted due to the whitelist * wd edit * add security filled leather satchel to loadouts
18 lines
528 B
C#
18 lines
528 B
C#
using Content.Shared.Whitelist;
|
|
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Labels.Components
|
|
{
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class HandLabelerComponent : Component
|
|
{
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
[DataField] public string AssignedLabel { get; set; } = string.Empty;
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
[DataField] public int MaxLabelChars { get; set; } = 50;
|
|
|
|
[DataField] public EntityWhitelist Whitelist = new();
|
|
}
|
|
}
|