mirror of
https://github.com/songoda/EpicBuckets.git
synced 2024-11-13 05:45:16 +01:00
Fixed startup error
This commit is contained in:
parent
9c80f031a2
commit
58f4604ee0
5
pom.xml
5
pom.xml
@ -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>
|
||||
|
@ -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============================="));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user