13 lines
350 B
C#
13 lines
350 B
C#
|
|
namespace Content.Server.AI.Tracking
|
||
|
|
{
|
||
|
|
/// Added when a medibot injects someone
|
||
|
|
/// So they don't get injected again for at least a minute.
|
||
|
|
[RegisterComponent]
|
||
|
|
public sealed class RecentlyInjectedComponent : Component
|
||
|
|
{
|
||
|
|
public float Accumulator = 0f;
|
||
|
|
|
||
|
|
public TimeSpan RemoveTime = TimeSpan.FromMinutes(1);
|
||
|
|
}
|
||
|
|
}
|