Skip to content
This repository was archived by the owner on Feb 19, 2024. It is now read-only.

Commit 216e364

Browse files
author
BuildTools
committed
Updated GitHub repository. Fixed Velocity component startup message. Changed plugin version to 2.5.8.
1 parent bc5299b commit 216e364

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

pom.xml

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

77
<groupId>de.sportkanone123</groupId>
88
<artifactId>ClientDetector</artifactId>
9-
<version>2.5.7</version>
9+
<version>2.5.8</version>
1010

1111
<properties>
1212
<maven.compiler.source>8</maven.compiler.source>

src/main/java/de/sportkanone123/clientdetector/velocity/ClientDetectorVelocity.java

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
import com.velocitypowered.api.proxy.messages.LegacyChannelIdentifier;
1111
import com.velocitypowered.api.proxy.messages.MinecraftChannelIdentifier;
1212
import com.velocitypowered.api.proxy.server.RegisteredServer;
13-
import net.md_5.bungee.api.ChatColor;
1413

1514
import java.nio.charset.StandardCharsets;
1615
import java.nio.file.Path;
@@ -24,7 +23,7 @@
2423
@com.velocitypowered.api.plugin.Plugin(
2524
id = "clientdetector",
2625
name = "ClientDetector",
27-
version = "2.5.7",
26+
version = "2.5.8",
2827
description = "A simple plugin to detect and manage a player's client/mods",
2928
authors = {"Sportkanone123", "Loving11ish"}
3029
)
@@ -53,12 +52,12 @@ public void onProxyInitialization(ProxyInitializeEvent event) {
5352

5453
runQueue();
5554

56-
logger.info(ChatColor.translateAlternateColorCodes('&', "&7-----------------------------------------"));
57-
logger.info(ChatColor.translateAlternateColorCodes('&', "&7[&3ClientDetector&7] (&aVersion&7) &aDetected Version &c" + server.getVersion()));
58-
logger.info(ChatColor.translateAlternateColorCodes('&', "&7[&3ClientDetector&7] (&aDetection&7) &aLoading Velocity adapter..."));
59-
logger.info(ChatColor.translateAlternateColorCodes('&', "&7[&3ClientDetector&7] (&aDetection&7) &aRegistering plugin messaging channels..."));
60-
logger.info(ChatColor.translateAlternateColorCodes('&', "&7[&3ClientDetector&7] &aStarted!"));
61-
logger.info(ChatColor.translateAlternateColorCodes('&', "&7-----------------------------------------"));
55+
logger.info("-----------------------------------------");
56+
logger.info("[ClientDetector] (Version) Detected Version " + server.getVersion());
57+
logger.info("[ClientDetector] (Detection) Loading Velocity adapter...");
58+
logger.info("[ClientDetector] (Detection) Registering plugin messaging channels...");
59+
logger.info("[ClientDetector] Started!");
60+
logger.info("-----------------------------------------");
6261
}
6362

6463
public void runQueue() {

src/main/resources/bungee.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: ClientDetector
2-
version: 2.5.7
2+
version: 2.5.8
33
author: Loving11ish
44
main: de.sportkanone123.clientdetector.bungeecord.ClientDetectorBungee
55
description: A simple plugin to detect and manage a player's client/mods

src/main/resources/plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: ClientDetector
2-
version: 2.5.7
2+
version: 2.5.8
33
authors: [ Sportkanone123, Loving11ish ]
44
main: de.sportkanone123.clientdetector.spigot.ClientDetector
55
description: A simple plugin to detect and manage a player's client/mods

0 commit comments

Comments
 (0)