mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-23 19:16:37 +01:00
Fix some formatting issues (#2671)
This commit is contained in:
parent
e8b1214219
commit
c5841b58a7
@ -98,7 +98,7 @@ public interface Message {
|
||||
.append(text()
|
||||
.decoration(BOLD, true)
|
||||
.append(text('L', AQUA))
|
||||
.append(text('P', DARK_GREEN))
|
||||
.append(text('P', DARK_AQUA))
|
||||
)
|
||||
.append(text(']'))
|
||||
.build();
|
||||
|
@ -154,7 +154,7 @@ public class MongoStorage implements StorageImplementation {
|
||||
long duration = System.currentTimeMillis() - start;
|
||||
|
||||
if (success) {
|
||||
meta.put("Ping", "&a" + duration + "ms");
|
||||
meta.put("Ping", duration + "ms");
|
||||
meta.put("Connected", "true");
|
||||
} else {
|
||||
meta.put("Connected", "false");
|
||||
|
@ -134,7 +134,7 @@ public abstract class HikariConnectionFactory implements ConnectionFactory {
|
||||
long duration = System.currentTimeMillis() - start;
|
||||
|
||||
if (success) {
|
||||
meta.put("Ping", "&a" + duration + "ms");
|
||||
meta.put("Ping", duration + "ms");
|
||||
meta.put("Connected", "true");
|
||||
} else {
|
||||
meta.put("Connected", "false");
|
||||
|
Loading…
Reference in New Issue
Block a user