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 )
22This is the API for Phoenix & pxQueue!
33
44## Installing
@@ -27,7 +27,7 @@ Add this to your `pom.xml` under `<dependencies>`:
2727<dependency >
2828 <groupId >xyz.refinedev.phoenix</groupId >
2929 <artifactId >pxAPI</artifactId >
30- <version >1.7.5.1 </version >
30+ <version >1.8.6 </version >
3131 <scope >provided</scope >
3232</dependency >
3333```
Original file line number Diff line number Diff line change 1414
1515 <groupId >xyz.refinedev.phoenix</groupId >
1616 <artifactId >pxAPI</artifactId >
17- <version >1.8</version >
17+ <version >1.8.6 </version >
1818
1919 <properties >
2020 <maven .compiler.source>1.8</maven .compiler.source>
Original file line number Diff line number Diff line change 1818public abstract class ChatChannelType {
1919 public abstract String getName ();
2020
21- public abstract boolean canUse (Player player );
21+ public abstract boolean canSendMessage (Player player );
2222
2323 public abstract int getPriority ();
2424
2525 public abstract String getFormat ();
2626
27- public abstract boolean acceptRecipient (Player player , Player other );
27+ public abstract boolean canReceiveMessage (Player sender , Player receiver );
2828
29- public boolean isStaff () {
29+ public boolean isGlobal () {
3030 return false ;
3131 }
3232
33+ public String getPermission () { return null ; }
34+
3335 public String getQuickAccessPrefix () {
3436 return null ;
3537 }
You can’t perform that action at this time.
0 commit comments