2021-11-28 14:56:53 +01:00
|
|
|
|
namespace Content.Shared.Database;
|
2021-11-22 19:08:27 +01:00
|
|
|
|
|
|
|
|
|
|
// DO NOT CHANGE THE NUMERIC VALUES OF THESE
|
2021-11-28 14:56:53 +01:00
|
|
|
|
[Serializable]
|
2021-11-22 19:08:27 +01:00
|
|
|
|
public enum LogImpact : sbyte
|
|
|
|
|
|
{
|
2025-03-20 20:56:51 +01:00
|
|
|
|
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!!
|
2021-11-22 19:08:27 +01:00
|
|
|
|
}
|