Фиксы (#518)
* 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
This commit is contained in:
17
Content.Shared/Labels/Components/HandLabelerComponent.cs
Normal file
17
Content.Shared/Labels/Components/HandLabelerComponent.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user