- A description / explanation of the alias files has been added.
- Small code changes
This commit is contained in:
2022-06-09 01:43:11 +02:00
parent 4334b26be5
commit e189722366
8 changed files with 142 additions and 18 deletions

View File

@@ -32,7 +32,6 @@ public class Load {
}
public static void loadReload() {
if (!new File(Main.getPath(), "config.yml").exists()) {
try {
CreateExampleAliasConfig.configCreate();
@@ -40,7 +39,11 @@ public class Load {
e.printStackTrace();
}
}
try {
plugin.saveResource("Alias/X_aliasDeclaration_X.yml",true);
} catch (Exception e) {
e.printStackTrace();
}
CreateConfig.configCreate();
LanguagesCreate.langCreate();
SelectConfig.onSelect();
@@ -53,4 +56,5 @@ public class Load {
}
AliasRegisterPermissions.onPermRegister();
}
}