File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
src/main/java/parallelmc/parallelutils Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 77 <groupId >parallelmc</groupId >
88 <artifactId >parallelutils</artifactId >
99
10- <version >1.12.2 </version >
10+ <version >1.12.3 </version >
1111 <packaging >jar</packaging >
1212
1313 <name >Parallelutils</name >
Original file line number Diff line number Diff line change 22
33public class Constants {
44
5- public static final Version VERSION = new Version (1 , 12 , 2 );
5+ public static final Version VERSION = new Version (1 , 12 , 3 );
66 public static final String PLUGIN_NAME = "ParallelUtils" ;
77 public static final String DEFAULT_WORLD = "world2" ;
88}
Original file line number Diff line number Diff line change @@ -182,7 +182,7 @@ UUID varchar(36) not null,
182182 puPlugin .getServer ().getScheduler ().scheduleSyncRepeatingTask (puPlugin , () -> {
183183 Component msg = autoMessages .get (rand .nextInt (autoMessages .size ()));
184184 for (Player p : puPlugin .getServer ().getOnlinePlayers ()) {
185- p .sendMessage (msg );
185+ p .sendMessage (" \n " + msg + " \n " );
186186 }
187187 }, 0L , interval );
188188
@@ -268,7 +268,7 @@ public void onDisable() {
268268 * @param message The message to send
269269 */
270270 public static void sendParallelMessageTo (Player player , String message ) {
271- Component msg = Component .text ("§3[§f§lP§3] §a" + message );
271+ Component msg = Component .text ("\n §3[§f§lP§3] §a " + message + " \n " );
272272 player .sendMessage (msg );
273273 }
274274
You can’t perform that action at this time.
0 commit comments