Skip to content

Commit 87cc204

Browse files
author
Librazy
committed
update broadcast
1 parent 929c580 commit 87cc204

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

build.gradle

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ plugins {
44
id 'org.inferred.processors' version '1.2.11'
55
}
66

7+
configurations.all {
8+
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
9+
}
10+
711
sourceCompatibility = 1.8
812
targetCompatibility = 1.8
913

src/main/java/cat/nyaa/nyaacore/Message.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -156,10 +156,10 @@ public Message broadcast(World world) {
156156
return this;
157157
}
158158

159-
public Message broadcast(Predicate<Player> playerFilter) {
159+
public Message broadcast(MessageType type, Predicate<Player> playerFilter) {
160160
for (Player player : Bukkit.getOnlinePlayers()) {
161161
if (playerFilter.test(player)) {
162-
this.send(player);
162+
this.send(player, type);
163163
}
164164
}
165165
Bukkit.getConsoleSender().sendMessage(inner.toLegacyText());

0 commit comments

Comments
 (0)