"New player" admin logging improvements (#35961)

* Initial commit

* Adjust a whoooole bunch of logs

* Also spears

* Track going crit

* Review fix

* Review fixes
This commit is contained in:
SlamBamActionman
2025-03-20 20:56:51 +01:00
committed by GitHub
parent 07a8a02522
commit 43d08100b9
47 changed files with 249 additions and 97 deletions

View File

@@ -4,8 +4,8 @@
[Serializable]
public enum LogImpact : sbyte
{
Low = -1,
Medium = 0,
High = 1,
Extreme = 2 // Nar'Sie just dropped
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!!
}