* Security hud shows icon based on criminal record status * Criminal status now linked to name instead of identity * parole loc * Test fix * review changes * Check station records instead of storing names on criminal record consoles. * cleanup * more cleanup * review changes * change outdated comments * rename * review changes * remove event subscription * replaced event with trycomp * default value
16 lines
519 B
C#
16 lines
519 B
C#
using Content.Shared.StatusIcon;
|
|
using Robust.Shared.GameStates;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared.Security.Components;
|
|
|
|
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
|
public sealed partial class CriminalRecordComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// The icon that should be displayed based on the criminal status of the entity.
|
|
/// </summary>
|
|
[DataField, AutoNetworkedField]
|
|
public ProtoId<StatusIconPrototype> StatusIcon = "SecurityIconWanted";
|
|
}
|