Updated to renamed API

This commit is contained in:
tastybento 2018-08-05 20:37:43 -07:00
parent 1e5e2c54ce
commit 315eff4349
2 changed files with 4 additions and 4 deletions

View File

@ -153,7 +153,7 @@
<dependency>
<groupId>world.bentobox</groupId>
<artifactId>bentobox</artifactId>
<version>LATEST</version>
<version>FC-0.81</version>
</dependency>
<dependency>

View File

@ -6,7 +6,7 @@ import bentobox.addon.bskyblock.commands.AdminCommand;
import bentobox.addon.bskyblock.commands.IslandCommand;
import bentobox.addon.bskyblock.generators.BSkyBlockWorld;
import world.bentobox.bentobox.api.addons.Addon;
import world.bentobox.bentobox.api.configuration.BSBConfig;
import world.bentobox.bentobox.api.configuration.BBConfig;
/**
* Main BSkyBlock class - provides an island minigame in the sky
@ -26,7 +26,7 @@ public class BSkyBlock extends Addon {
// Save the default config from config.yml
saveDefaultConfig();
// Load settings from config.yml. This will check if there are any issues with it too.
settings = new BSBConfig<>(this, Settings.class).loadConfigObject("");
settings = new BBConfig<>(this, Settings.class).loadConfigObject();
// Load or create worlds
bsbWorlds = new BSkyBlockWorld(this);
}
@ -42,7 +42,7 @@ public class BSkyBlock extends Addon {
public void onDisable() {
// Save settings
if (settings != null) {
new BSBConfig<>(this, Settings.class).saveConfigObject(settings);
new BBConfig<>(this, Settings.class).saveConfigObject(settings);
}
}