We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f55bbe0 commit 9aa8c50Copy full SHA for 9aa8c50
1 file changed
src/main/java/xyz/refinedev/phoenix/chat/api/ChatChannelType.java
@@ -4,6 +4,8 @@
4
import lombok.RequiredArgsConstructor;
5
import org.bukkit.entity.Player;
6
7
+import java.util.UUID;
8
+
9
/**
10
* This Project is the property of Refine Development © 2023
11
* Redistribution of this Project is not allowed
@@ -24,7 +26,7 @@ public abstract class ChatChannelType {
24
26
25
27
public abstract String getFormat();
28
- public abstract boolean canReceiveMessage(Player sender, Player receiver);
29
+ public abstract boolean canReceiveMessage(UUID sender, Player receiver);
30
31
public boolean isGlobal() {
32
return false;
0 commit comments