[Fix] Fixed Sponge network setting load error

This commit is contained in:
Rsl1122 2018-10-14 21:32:04 +03:00
parent 6ecf52beda
commit 0b7198df07
2 changed files with 1 additions and 5 deletions

View File

@ -65,6 +65,7 @@
<exclude>org.mockito:*</exclude> <exclude>org.mockito:*</exclude>
<exclude>org.easymock:*</exclude> <exclude>org.easymock:*</exclude>
<exclude>junit:*</exclude> <exclude>junit:*</exclude>
<exclued>org.slf4j:*</exclued>
</excludes> </excludes>
</artifactSet> </artifactSet>
<relocations> <relocations>
@ -87,10 +88,6 @@
<pattern>com.zaxxer</pattern> <pattern>com.zaxxer</pattern>
<shadedPattern>plan.com.zaxxer</shadedPattern> <shadedPattern>plan.com.zaxxer</shadedPattern>
</relocation> </relocation>
<relocation>
<pattern>org.slf4j</pattern>
<shadedPattern>plan.org.slf4j</shadedPattern>
</relocation>
<relocation> <relocation>
<pattern>org.bstats</pattern> <pattern>org.bstats</pattern>
<shadedPattern>com.djrapitops.plan.utilities.metrics</shadedPattern> <shadedPattern>com.djrapitops.plan.utilities.metrics</shadedPattern>

View File

@ -36,7 +36,6 @@ public class SpongeConfigSystem extends BukkitConfigSystem {
public void enable() throws EnableException { public void enable() throws EnableException {
firstInstall = !files.getConfigFile().exists(); firstInstall = !files.getConfigFile().exists();
super.enable(); super.enable();
config.getNetworkSettings().loadSettingsFromDB();
} }
@Override @Override