T2CodeLib-13.0 #15

Merged
JaTiTV merged 5 commits from T2CodeLib-13.0 into main 2022-12-22 00:48:43 +00:00
2 changed files with 7 additions and 13 deletions
Showing only changes of commit b825152415 - Show all commits

View File

@ -39,7 +39,7 @@ public class Load {
public static void onLoad(String prefix, List<String> autor, String version, String spigot, int spigotID, String discord, int bstatsID) { public static void onLoad(String prefix, List<String> autor, String version, String spigot, int spigotID, String discord, int bstatsID) {
Long long_ = T2Ctemplate.onLoadHeader(prefix, autor, version, spigot, discord); long long_ = T2Ctemplate.onLoadHeader(prefix, autor, version, spigot, discord);
try { try {
Debug.debugmsg(); Debug.debugmsg();
} catch (Exception e) { } catch (Exception e) {

View File

@ -5,31 +5,25 @@ public class Util {
public static String getInfoText() { public static String getInfoText() {
return ""; return "";
} }
private static Integer configVersion = 5;
private static String requiredT2CodeLibVersion = "13.0";
private static String Prefix = "§8[§4C§9GUI§8]";
private static Integer SpigotID = 90671;
private static Integer BstatsID = 10840;
private static String Spigot = "https://www.spigotmc.org/resources/" + SpigotID;
public static String getRequiredT2CodeLibVersion() { public static String getRequiredT2CodeLibVersion() {
return requiredT2CodeLibVersion; return "13.0";
} }
public static String getPrefix() { public static String getPrefix() {
return Prefix; return "§8[§4C§9GUI§8]";
} }
public static Integer getSpigotID() { public static Integer getSpigotID() {
return SpigotID; return 90671;
} }
public static Integer getBstatsID() { public static Integer getBstatsID() {
return BstatsID; return 10840;
} }
public static String getSpigot() { public static String getSpigot() {
return Spigot; return "https://www.spigotmc.org/resources/" + getSpigotID();
} }
public static String getDiscord() { public static String getDiscord() {
@ -37,6 +31,6 @@ public class Util {
} }
public static Integer getConfigVersion() { public static Integer getConfigVersion() {
return configVersion; return 5;
} }
} }