39 lines
957 B
Java
39 lines
957 B
Java
package net.t2code.alias;
|
|
|
|
public class Util {
|
|
private static String requiredT2CodeLibVersion = "12.4";
|
|
private static String Prefix = "§8[§4T2Code§7-§aAlias§8]";
|
|
private static Integer SpigotID = 96389;
|
|
private static Integer BstatsID = 12517;
|
|
private static String Spigot = "https://www.spigotmc.org/resources/" + SpigotID;
|
|
private static String Discord = "http://dc.t2code.net";
|
|
|
|
public static String getRequiredT2CodeLibVersion() {
|
|
return requiredT2CodeLibVersion;
|
|
}
|
|
|
|
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 void setPrefix(String prefix) {
|
|
Prefix = prefix;
|
|
}
|
|
}
|