T2CodeLib/src/main/java/net/t2code/lib/Util.java

36 lines
820 B
Java
Raw Normal View History

2021-11-28 01:13:21 +00:00
package net.t2code.lib;
public class Util {
2021-12-31 16:17:27 +00:00
private static Boolean Snapshot = false;
2021-12-31 01:17:24 +00:00
private static String Prefix = "§8[§4T2Code§5Lib§8]";
private static Integer SpigotID = 96388;
private static Integer BstatsID = 12518;
private static String Spigot = "https://www.spigotmc.org/resources/" + SpigotID;
private static String Discord = "http://dc.t2code.net";
public static String getPrefix() {
return Prefix;
}
public static Integer getSpigotID() {
return SpigotID;
}
public static Integer getBstatsID() {
return BstatsID;
}
public static String getSpigot() {
return Spigot;
}
public static String getDiscord() {
return Discord;
}
public static Boolean getSnapshot(){
return Snapshot;
}
2021-11-28 01:13:21 +00:00
}