* First commit * I forgot silly me * Actually added comments * spellin * fixes * more blacklists * Minor fixes * Speech Verb also changes now * Simple name stuff * Other fixes * remove one line of whitespace --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com>
19 lines
699 B
C#
19 lines
699 B
C#
using Content.Shared.Whitelist;
|
|
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.ChangeNameInContainer;
|
|
|
|
/// <summary>
|
|
/// An entity with this component will get its name and verb chaned to the container it's inside of. E.g, if your a
|
|
/// pAI that has this component and are inside a lizard plushie, your name when talking will be "lizard plushie".
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent, Access(typeof(ChangeNameInContainerSystem))]
|
|
public sealed partial class ChangeVoiceInContainerComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// A whitelist of containers that will change the name.
|
|
/// </summary>
|
|
[DataField]
|
|
public EntityWhitelist? Whitelist;
|
|
}
|