Add Modular grenades (chemnades). (#7138)
This commit is contained in:
32
Content.Server/Construction/Completions/AdminLog.cs
Normal file
32
Content.Server/Construction/Completions/AdminLog.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
using Content.Server.Administration.Logs;
|
||||
using Content.Shared.Construction;
|
||||
using Content.Shared.Database;
|
||||
using JetBrains.Annotations;
|
||||
|
||||
namespace Content.Server.Construction.Completions;
|
||||
|
||||
/// <summary>
|
||||
/// Generate an admin log upon reaching this node. Useful for dangerous construction (e.g., modular grenades)
|
||||
/// </summary>
|
||||
[UsedImplicitly]
|
||||
public sealed class AdminLog : IGraphAction
|
||||
{
|
||||
[DataField("logType", required: true)]
|
||||
public LogType LogType = LogType.Construction;
|
||||
|
||||
[DataField("impact")]
|
||||
public LogImpact Impact = LogImpact.Medium;
|
||||
|
||||
[DataField("message", required: true)]
|
||||
public string Message = string.Empty;
|
||||
|
||||
public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager)
|
||||
{
|
||||
var logSys = entityManager.EntitySysManager.GetEntitySystem<AdminLogSystem>();
|
||||
|
||||
if (userUid.HasValue)
|
||||
logSys.Add(LogType, Impact, $"{Message} - Entity: {entityManager.ToPrettyString(uid):entity}, User: {entityManager.ToPrettyString(userUid.Value):user}");
|
||||
else
|
||||
logSys.Add(LogType, Impact, $"{Message} - Entity: {entityManager.ToPrettyString(uid):entity}");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user