Add AFK tracking system.

Allows us to see which players have not done any input and can be considered AFK.
This commit is contained in:
Pieter-Jan Briers
2021-07-22 23:19:41 +02:00
parent ed384fbc91
commit 7345985410
5 changed files with 153 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
using Content.Server.Administration;
using Content.Server.Administration.Managers;
using Content.Server.Afk;
using Content.Server.AI.Utility;
using Content.Server.AI.Utility.Considerations;
using Content.Server.AI.WorldState;
@@ -62,6 +63,7 @@ namespace Content.Server.IoC
IoCManager.Register<IVoteManager, VoteManager>();
IoCManager.Register<INpcBehaviorManager, NpcBehaviorManager>();
IoCManager.Register<IPlayerLocator, PlayerLocator>();
IoCManager.Register<IAfkManager, AfkManager>();
}
}
}