Reaction & reagent effect logging (#5463)

* Reaction logging

* effect logging

* position
This commit is contained in:
mirrorcult
2021-11-22 23:51:43 -07:00
committed by GitHub
parent 93694b9dd7
commit 732baa56a9
12 changed files with 53 additions and 1 deletions

View File

@@ -1,6 +1,10 @@
namespace Content.Shared.Administration.Logs;
using System;
using Robust.Shared.Serialization;
namespace Content.Shared.Administration.Logs;
// DO NOT CHANGE THE NUMERIC VALUES OF THESE
[Serializable, NetSerializable]
public enum LogImpact : sbyte
{
Low = -1,

View File

@@ -14,4 +14,6 @@ public enum LogType
EventStopped = 7,
ShuttleCalled = 8,
ShuttleRecalled = 9,
ChemicalReaction = 17,
ReagentEffect = 18,
}