Fixed startup error

This commit is contained in:
Niels Vergucht 2018-12-09 21:54:11 +01:00
parent 9c80f031a2
commit 58f4604ee0
2 changed files with 3 additions and 7 deletions

View File

@ -50,7 +50,6 @@
<include>com.flowpowered:flow-math</include>
<include>com.google.code.findbugs</include>
<include>com.google.guava</include>
<include>org.apache.commons:commons-lang3</include>
</includes>
</artifactSet>
<relocations>
@ -82,10 +81,6 @@
<pattern>com.google</pattern>
<shadedPattern>${project.groupId}.${project.artifactId}.google</shadedPattern>
</relocation>
<relocation>
<pattern>org.apache</pattern>
<shadedPattern>${project.groupId}.${project.artifactId}.apache</shadedPattern>
</relocation>
<relocation>
<pattern>fr.minuskube.inv</pattern>
<shadedPattern>${project.groupId}.${project.artifactId}.inv</shadedPattern>

View File

@ -46,8 +46,6 @@ public class EpicBuckets extends ExtendedJavaPlugin {
saveDefaultConfig();
Locale.init(this);
Locale.saveDefaultLocale("en_US");
this.locale = Locale.getLocale(getConfig().getString("Locale", "en_US"));
debugger = new Debugger();
@ -66,6 +64,9 @@ public class EpicBuckets extends ExtendedJavaPlugin {
setupEconomy();
Locale.init(this);
Locale.saveDefaultLocale("en_US");
console.sendMessage(ChatUtil.colorString("&a============================="));
}