[fix] emotion panel now takes White category

This commit is contained in:
rhailrake
2023-05-05 15:14:17 +06:00
committed by Aviu00
parent 59b5f24842
commit 3a093ced92
3 changed files with 16 additions and 18 deletions

View File

@@ -54,5 +54,6 @@ public enum EmoteCategory : byte
Invalid = 0,
Vocal = 1 << 0,
Gesture = 1 << 1,
General = byte.MaxValue
General = byte.MaxValue,
White = byte.MaxValue
}