File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed
src/main/java/xyz/refinedev/phoenix/chat/api Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 1
- # Phoenix-API (Version: 1.7.5.1 )
1
+ # Phoenix-API (Version: 1.8.6 )
2
2
This is the API for Phoenix & pxQueue!
3
3
4
4
## Installing
@@ -27,7 +27,7 @@ Add this to your `pom.xml` under `<dependencies>`:
27
27
<dependency >
28
28
<groupId >xyz.refinedev.phoenix</groupId >
29
29
<artifactId >pxAPI</artifactId >
30
- <version >1.7.5.1 </version >
30
+ <version >1.8.6 </version >
31
31
<scope >provided</scope >
32
32
</dependency >
33
33
```
Original file line number Diff line number Diff line change 14
14
15
15
<groupId >xyz.refinedev.phoenix</groupId >
16
16
<artifactId >pxAPI</artifactId >
17
- <version >1.8</version >
17
+ <version >1.8.6 </version >
18
18
19
19
<properties >
20
20
<maven .compiler.source>1.8</maven .compiler.source>
Original file line number Diff line number Diff line change 18
18
public abstract class ChatChannelType {
19
19
public abstract String getName ();
20
20
21
- public abstract boolean canUse (Player player );
21
+ public abstract boolean canSendMessage (Player player );
22
22
23
23
public abstract int getPriority ();
24
24
25
25
public abstract String getFormat ();
26
26
27
- public abstract boolean acceptRecipient (Player player , Player other );
27
+ public abstract boolean canReceiveMessage (Player sender , Player receiver );
28
28
29
- public boolean isStaff () {
29
+ public boolean isGlobal () {
30
30
return false ;
31
31
}
32
32
33
+ public String getPermission () { return null ; }
34
+
33
35
public String getQuickAccessPrefix () {
34
36
return null ;
35
37
}
You can’t perform that action at this time.
0 commit comments