-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPermission.java
More file actions
60 lines (48 loc) · 1.67 KB
/
Permission.java
File metadata and controls
60 lines (48 loc) · 1.67 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package pro.cloudnode.smp.cloudnodemsg;
import org.jetbrains.annotations.NotNull;
public final class Permission {
/**
* Allows using the /msg and /r commands
*/
public final static @NotNull String USE = "cloudnodemsg.use";
/**
* Allow using the team message command (/teammsg)
*/
public final static @NotNull String USE_TEAM = "cloudnodemsg.use.team";
/**
* Allows reloading the plugin
*/
public final static @NotNull String RELOAD = "cloudnodemsg.reload";
/**
* Allows sending messages to vanished players
*/
public final static @NotNull String SEND_VANISHED = "cloudnodemsg.send.vanished";
/**
* Allows ignoring and unignoring players
*/
public final static @NotNull String IGNORE = "cloudnodemsg.ignore";
/**
* Player's messages are immune to ignoring
*/
public final static @NotNull String IGNORE_BYPASS = "cloudnodemsg.ignore.bypass";
/**
* Allows using the /togglemsg command
*/
public final static @NotNull String TOGGLE = "cloudnodemsg.toggle";
/**
* Allows using the /togglemsg command for others
*/
public final static @NotNull String TOGGLE_OTHER = "cloudnodemsg.toggle.other";
/**
* Allows to send private message even when the target have their private messages toggled
*/
public final static @NotNull String TOGGLE_BYPASS = "cloudnodemsg.toggle.bypass";
/**
* Allows to see the private messages of other players
*/
public final static @NotNull String SPY = "cloudnodemsg.spy";
/**
* Allows using the /mail command
*/
public final static @NotNull String MAIL = "cloudnodemsg.mail";
}