forked from Maxlego08/zEssentials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOption.java
More file actions
36 lines (32 loc) · 719 Bytes
/
Option.java
File metadata and controls
36 lines (32 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package fr.maxlego08.essentials.api.user;
/**
* Represents various options available in the system.
* This enum defines different options that can be enabled or disabled within the system.
*/
public enum Option {
/**
* Option for enabling social psy feature.
*/
SOCIAL_SPY,
/**
* Option for enabling god mode.
*/
GOD,
BAN,
MUTE,
/**
* Option for enabling inventory inspection.
*/
INVSEE,
VANISH,
PRIVATE_MESSAGE_DISABLE,
PAY_DISABLE,
POWER_TOOLS_DISABLE,
DISABLE_SCOREBOARD,
NIGHT_VISION,
PHANTOMS_DISABLE,
WORLDEDIT_INVENTORY,
WORLDEDIT_BOSSBAR_DISABLE,
TELEPORT_REQUEST_DISABLE,
DEATH_MESSAGE_DISABLE,
}