Files
tbd-station-14/Content.Shared/Administration/Logs/LogImpact.cs
mirrorcult 732baa56a9 Reaction & reagent effect logging (#5463)
* Reaction logging

* effect logging

* position
2021-11-22 23:51:43 -07:00

15 lines
295 B
C#

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,
Medium = 0,
High = 1,
Extreme = 2 // Nar'Sie just dropped
}