Files
SlamBamActionman 43d08100b9 "New player" admin logging improvements (#35961)
* Initial commit

* Adjust a whoooole bunch of logs

* Also spears

* Track going crit

* Review fix

* Review fixes
2025-03-20 20:56:51 +01:00

12 lines
487 B
C#

namespace Content.Shared.Database;
// DO NOT CHANGE THE NUMERIC VALUES OF THESE
[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!!
}