This commit is contained in:
GeorgH93 2015-09-30 23:55:31 +02:00
parent 563a260248
commit a7c12782d5
2 changed files with 36 additions and 28 deletions

View File

@ -17,7 +17,7 @@ command_cooldown: -1
# If enabled, it can be disabled for individual players with the "backpack.KeepOnDeath" permission.
drop_on_death: true
# Defines if the message that the backpack has been closed should be shown
show_close_message: true
show_close_message: flase
# Controlls for the auto pickup on full inventory function
full_inventory:

View File

@ -37,8 +37,8 @@ public Config(JavaPlugin plugin)
@Override
protected boolean newConfigCreated()
{
config.set("Database.UseUUIDs", plugin.getServer().getOnlineMode() && isBukkitVersionUUIDCompatible());
return !(plugin.getServer().getOnlineMode() && isBukkitVersionUUIDCompatible());
config.set("Database.UseUUIDs", Bukkit.getServer().getOnlineMode() && isBukkitVersionUUIDCompatible());
return !(Bukkit.getServer().getOnlineMode() && isBukkitVersionUUIDCompatible());
}
@Override
@ -48,19 +48,27 @@ protected void doUpdate()
}
@Override
protected void doUpgrade(Configuration oldConfig)
protected void doUpgrade(at.pcgamingfreaks.Configuration oldConfig)
{
Set<String> keys = oldConfig.getConfig().getKeys(true);
Set<String> keys = oldConfig.getConfig().getKeys();
for(String key : keys)
{
if(key.equals("UseUUIDs") || key.equals("Version")) continue;
config.set(key, oldConfig.getConfig().get(key));
if(key.equals("UseUUIDs") || key.equals("Version"))
continue;
try
{
config.set(key, oldConfig.getConfig().getString(key));
}
catch(Exception e)
{
e.printStackTrace();
}
}
if(!oldConfig.getConfig().isSet("Database.UseUUIDs"))
{
if(oldConfig.getConfig().isSet("UseUUIDs"))
{
config.set("Database.UseUUIDs", config.getBoolean("UseUUIDs"));
config.set("Database.UseUUIDs", config.getBoolean("UseUUIDs", true));
}
else
{
@ -97,7 +105,7 @@ public String getMySQLUser()
public String getMySQLPassword()
{
return config.getString("Database.MySQL.Password");
return config.getString("Database.MySQL.Password", "");
}
public String getUserTable()
@ -112,7 +120,7 @@ public String getBackpackTable()
public String getDBFields(String sub)
{
return config.getString("Database.Tables.Fields." + sub);
return config.getString("Database.Tables.Fields." + sub, "");
}
public boolean getUpdatePlayer()