Add teleporter logs (#13375)
This commit is contained in:
20
Content.Server/Teleportation/PortalSystem.cs
Normal file
20
Content.Server/Teleportation/PortalSystem.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using Content.Server.Mind.Components;
|
||||
using Content.Shared.Administration.Logs;
|
||||
using Content.Shared.Database;
|
||||
using Content.Shared.Teleportation.Systems;
|
||||
using Robust.Shared.Map;
|
||||
|
||||
namespace Content.Server.Teleportation;
|
||||
|
||||
public sealed class PortalSystem : SharedPortalSystem
|
||||
{
|
||||
[Dependency] private readonly ISharedAdminLogManager _adminLogger = default!;
|
||||
|
||||
// TODO Move to shared
|
||||
protected override void LogTeleport(EntityUid portal, EntityUid subject, EntityCoordinates source,
|
||||
EntityCoordinates target)
|
||||
{
|
||||
if (HasComp<MindComponent>(subject))
|
||||
_adminLogger.Add(LogType.Teleport, LogImpact.Low, $"{ToPrettyString(subject):player} teleported via {ToPrettyString(portal)} from {source} to {target}");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user