* Cleanup forensic cleaning * move cleandelay to new component; buff syndiesoap * updated based on feedback * remove tag
15 lines
397 B
C#
15 lines
397 B
C#
namespace Content.Server.Forensics;
|
|
|
|
/// <summary>
|
|
/// This component is for items that can clean up forensic evidence
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class CleansForensicsComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// How long it takes to wipe prints/blood/etc. off of things using this entity
|
|
/// </summary>
|
|
[DataField]
|
|
public float CleanDelay = 12.0f;
|
|
}
|