Files

12 lines
487 B
C#
Raw Permalink Normal View History

2021-11-28 14:56:53 +01:00
namespace Content.Shared.Database;
// DO NOT CHANGE THE NUMERIC VALUES OF THESE
2021-11-28 14:56:53 +01:00
[Serializable]
public enum LogImpact : sbyte
{
Low = -1, // General logging
Medium = 0, // Has impact on the round but not necessary for admins to be notified of
High = 1, // Notable logs that come up in normal gameplay; new players causing these will pop up as admin alerts!
Extreme = 2 // Irreversible round-impacting logs admins should always be notified of, OR big admin actions!!
}