Criminal record hud icons (#25192)
* 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
This commit is contained in:
@@ -4,12 +4,18 @@
|
||||
/// Status used in Criminal Records.
|
||||
///
|
||||
/// None - the default value
|
||||
/// Suspected - the person is suspected of doing something illegal
|
||||
/// Wanted - the person is being wanted by security
|
||||
/// Detained - the person is detained by security
|
||||
/// Paroled - the person is on parole
|
||||
/// Discharged - the person has been released from prison
|
||||
/// </summary>
|
||||
public enum SecurityStatus : byte
|
||||
{
|
||||
None,
|
||||
Suspected,
|
||||
Wanted,
|
||||
Detained
|
||||
Detained,
|
||||
Paroled,
|
||||
Discharged
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user