9
0
mirror of https://github.com/Xiao-MoMi/Custom-Fishing.git synced 2026-01-06 15:51:50 +00:00

checkpoint - 14

This commit is contained in:
XiaoMoMi
2024-06-13 02:08:42 +08:00
parent ccbfa68e04
commit 29ca35a031
38 changed files with 980 additions and 577 deletions

View File

@@ -255,13 +255,18 @@ public enum Dependency {
"org.slf4j",
"slf4j-simple",
"maven",
"slf4j-simple"
),
"slf4j_simple"
) {
@Override
public String getVersion() {
return Dependency.SLF4J_API.getVersion();
}
},
SLF4J_API(
"org.slf4j",
"slf4j-api",
"maven",
"slf4j-api"
"slf4j"
);
private final List<Relocation> relocations;

View File

@@ -101,7 +101,7 @@ public class TranslationManager {
Locale localLocale = Locale.getDefault();
if (!this.installed.contains(localLocale)) {
plugin.getPluginLogger().warn(localLocale.toString().toLowerCase(Locale.ENGLISH) + ".yml not exists, using en.yml as default locale. Consider contributing if you have time for that. We appreciate your work!");
plugin.getPluginLogger().warn(localLocale.toString().toLowerCase(Locale.ENGLISH) + ".yml not exists, using en.yml as default locale.");
}
}

View File

@@ -21,4 +21,5 @@ geantyref=${geantyref_version}
gson=${gson_version}
caffeine=${caffeine_version}
jedis=${jedis_version}
exp4j=${exp4j_version}
exp4j=${exp4j_version}
slf4j=${slf4j_version}