13.3_DEV #8
8
pom.xml
8
pom.xml
@ -6,7 +6,7 @@
|
||||
|
||||
<groupId>net.t2code</groupId>
|
||||
<artifactId>T2CodeLib</artifactId>
|
||||
<version>13.2</version>
|
||||
<version>13.3_DEV</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>T2CodeLib</name>
|
||||
@ -86,12 +86,12 @@
|
||||
<id>BenCodez Repo</id>
|
||||
<url>https://nexus.bencodez.com/repository/maven-public/</url>
|
||||
</repository>
|
||||
<!--Kyori MiniMessage-->
|
||||
<!--Kyori MiniMessage
|
||||
|
||||
<repository>
|
||||
<id>sonatype-oss-snapshots1</id>
|
||||
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
|
||||
</repository>
|
||||
</repository>-->
|
||||
</repositories>
|
||||
|
||||
|
||||
@ -145,7 +145,7 @@
|
||||
<dependency>
|
||||
<groupId>net.kyori</groupId>
|
||||
<artifactId>adventure-platform-bukkit</artifactId>
|
||||
<version>4.1.3-SNAPSHOT</version>
|
||||
<version>4.1.2</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
|
@ -16,11 +16,12 @@ public class T2CminiMessage {
|
||||
public static void sendMiniMessage(String msg) {
|
||||
T2CodeLibMain.adventure().console().sendMessage(replace(msg));
|
||||
}
|
||||
public static void miniMessage(String msg, Player player){
|
||||
|
||||
public static void miniMessage(String msg, Player player) {
|
||||
T2CodeLibMain.adventure().player(player).sendMessage(replace(msg));
|
||||
}
|
||||
|
||||
protected static Component replace(String text){
|
||||
protected static Component replace(String text) {
|
||||
return MiniMessage.miniMessage().deserialize(T2Creplace.convertColorCode(text));
|
||||
}
|
||||
}
|
||||
|
@ -159,6 +159,7 @@ public final class T2CodeLibMain extends JavaPlugin {
|
||||
if (adventure == null) {
|
||||
throw new IllegalStateException("Tried to access Adventure when the plugin was disabled!");
|
||||
}
|
||||
Bukkit.getConsoleSender().sendMessage(Util.getPrefix() + " Adventure load");
|
||||
return adventure;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user