- The option 'Plugin.UpdateCheck.OnJoin' activates / deactivates the UpdateCheck on join of all T2Code plugins using the T2CodeLib from now on
- minor code changes
This commit is contained in:
2022-04-26 18:26:51 +02:00
parent f27ec3c985
commit df01efdfbd
12 changed files with 54 additions and 60 deletions

View File

@@ -15,8 +15,8 @@ public class SelectLibMsg {
public static String selectMSG;
public static String VaultNotSetUp;
public static String SoundNotFound;
public static String vaultNotSetUp;
public static String soundNotFound;
public static void onSelect(String Prefix) {
@@ -38,8 +38,8 @@ public class SelectLibMsg {
} else selectMSG = SelectLibConfig.language;
YamlConfiguration yamlConfiguration_msg = YamlConfiguration.loadConfiguration(msg);
VaultNotSetUp = Replace.replace(prefix, yamlConfiguration_msg.getString("Plugin.VaultNotSetUp"));
SoundNotFound = Replace.replace(prefix, yamlConfiguration_msg.getString("Plugin.SoundNotFound"));
vaultNotSetUp = Replace.replace(prefix, yamlConfiguration_msg.getString("Plugin.VaultNotSetUp"));
soundNotFound = Replace.replace(prefix, yamlConfiguration_msg.getString("Plugin.SoundNotFound"));
send.console(Prefix + " §2Language successfully selected to: §6" + selectMSG + " §7- §e" + (System.currentTimeMillis() - long_.longValue()) + "ms");
}