T2C-OPSecurity/OpSecurity V3/src/main/java/net/t2code/opsecurity/Util.java

29 lines
584 B
Java
Raw Normal View History

2022-11-03 01:29:26 +00:00
package net.t2code.opsecurity;
2022-11-03 18:15:07 +00:00
import lombok.Getter;
2022-11-03 01:29:26 +00:00
public class Util {
2022-11-03 18:15:07 +00:00
@Getter
private static String infoText = "";
@Getter
private static String requiredT2CodeLibVersion = "13.2";
2022-11-03 18:15:07 +00:00
@Getter
private static String prefix = "§8[§4T2C§8-§2OP§4Security§8]";
2022-11-03 01:29:26 +00:00
2022-11-03 18:15:07 +00:00
@Getter
private static Integer spigotID = 90739;
2022-11-03 01:29:26 +00:00
2022-11-03 18:15:07 +00:00
@Getter
private static Integer bstatsID = 10858;
2022-11-03 01:29:26 +00:00
2022-11-03 18:15:07 +00:00
@Getter
private static String spigot = "https://www.spigotmc.org/resources/" + getSpigotID();
2022-11-03 01:29:26 +00:00
2022-11-03 18:15:07 +00:00
@Getter
private static String discord = "http://dc.t2code.net";
2022-11-03 01:29:26 +00:00
}