File tree 2 files changed +6
-2
lines changed
src/main/java/cat/nyaa/nyaacore
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ plugins {
4
4
id ' org.inferred.processors' version ' 1.2.11'
5
5
}
6
6
7
+ configurations. all {
8
+ resolutionStrategy. cacheChangingModulesFor 0 , ' seconds'
9
+ }
10
+
7
11
sourceCompatibility = 1.8
8
12
targetCompatibility = 1.8
9
13
Original file line number Diff line number Diff line change @@ -156,10 +156,10 @@ public Message broadcast(World world) {
156
156
return this ;
157
157
}
158
158
159
- public Message broadcast (Predicate <Player > playerFilter ) {
159
+ public Message broadcast (MessageType type , Predicate <Player > playerFilter ) {
160
160
for (Player player : Bukkit .getOnlinePlayers ()) {
161
161
if (playerFilter .test (player )) {
162
- this .send (player );
162
+ this .send (player , type );
163
163
}
164
164
}
165
165
Bukkit .getConsoleSender ().sendMessage (inner .toLegacyText ());
You can’t perform that action at this time.
0 commit comments