Skip to content

Commit 95a1858

Browse files
Fix formatting and bump version
1 parent a1cb3cb commit 95a1858

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
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>

src/main/java/parallelmc/parallelutils/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
public 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
}

src/main/java/parallelmc/parallelutils/modules/parallelchat/ParallelChat.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)