Make damage logs distinguish between damage and healing

This commit is contained in:
DrSmugleaf
2021-11-22 19:45:08 +01:00
parent c3fe5909ad
commit d12fa22ce1
2 changed files with 26 additions and 3 deletions

View File

@@ -4,5 +4,7 @@
public enum LogType
{
Unknown = 0, // do not use
DamageChange = 1
// DamageChange = 1
Damaged = 2,
Healed = 3,
}