mirror of
https://github.com/MrOkiDoki/BattleBit-Community-Server-API.git
synced 2025-01-10 11:47:29 -03:00
23 lines
491 B
C#
23 lines
491 B
C#
namespace BattleBitAPI.Common
|
|
{
|
|
public enum ReportReason
|
|
{
|
|
Cheating_WallHack = 0,
|
|
Cheating_Aimbot = 1,
|
|
Cheating_Speedhack = 2,
|
|
|
|
Racism_Discrimination_Text = 3,
|
|
Racism_Discrimination_Voice = 4,
|
|
|
|
Spamming_Text = 5,
|
|
Spamming_Voice = 6,
|
|
|
|
Bad_Language_Text = 7,
|
|
Bad_Language_Voice = 8,
|
|
|
|
Griefing = 9,
|
|
Exploiting = 10,
|
|
OtherToxicBehaviour = 11,
|
|
UserProfileNamePicture = 12,
|
|
}
|
|
}
|