mirror of
https://github.com/GeorgH93/Minepacks.git
synced 2024-11-15 10:55:20 +01:00
Cleanup config class
This commit is contained in:
parent
b238a17467
commit
9df3df69b0
@ -36,6 +36,7 @@
|
||||
|
||||
import java.io.FileNotFoundException;
|
||||
import java.util.*;
|
||||
import java.util.logging.Level;
|
||||
|
||||
public class Config extends Configuration implements DatabaseConnectionConfiguration, ILanguageConfiguration
|
||||
{
|
||||
@ -97,7 +98,7 @@ public void setDatabaseType(String type)
|
||||
}
|
||||
catch(FileNotFoundException e)
|
||||
{
|
||||
e.printStackTrace();
|
||||
logger.log(Level.SEVERE, "Failed to set database type", e);
|
||||
}
|
||||
}
|
||||
|
||||
@ -131,7 +132,7 @@ public boolean useOnlineUUIDs()
|
||||
Boolean detectedOnlineMode = Utils.getBungeeOrVelocityOnlineMode();
|
||||
if (detectedOnlineMode != null)
|
||||
{
|
||||
logger.info("Detected online mode in paper config: " + detectedOnlineMode);
|
||||
logger.log(Level.INFO, "Detected online mode in paper config: {0}", detectedOnlineMode);
|
||||
return detectedOnlineMode;
|
||||
}
|
||||
logger.warning("When using BungeeCord please make sure to set the UUID_Type config option explicitly!");
|
||||
@ -169,7 +170,7 @@ public long getUnCacheDelay()
|
||||
|
||||
public String getBPTitleOther()
|
||||
{
|
||||
return ChatColor.translateAlternateColorCodes('&', getConfigE().getString("BackpackTitleOther", "{OwnerName} Backpack").replaceAll("%", "%%").replaceAll("\\{OwnerName}", "%s"));
|
||||
return ChatColor.translateAlternateColorCodes('&', getConfigE().getString("BackpackTitleOther", "{OwnerName} Backpack").replace("%", "%%").replace("{OwnerName}", "%s"));
|
||||
}
|
||||
|
||||
public String getBPTitle()
|
||||
@ -208,7 +209,7 @@ public ShrinkApproach getShrinkApproach()
|
||||
}
|
||||
catch(IllegalArgumentException ignored)
|
||||
{
|
||||
logger.warning("Unknown ShrinkApproach \"" + approach + "\"!");
|
||||
logger.log(Level.WARNING, "Unknown ShrinkApproach \"{0}\"!", approach);
|
||||
return ShrinkApproach.SORT;
|
||||
}
|
||||
}
|
||||
@ -226,7 +227,7 @@ public String getUpdateChannel()
|
||||
{
|
||||
return channel;
|
||||
}
|
||||
else logger.info("Unknown update Channel: " + channel);
|
||||
else logger.log(Level.INFO, "Unknown update Channel: {0}", channel);
|
||||
return null;
|
||||
}
|
||||
|
||||
@ -305,7 +306,7 @@ public Collection<GameMode> getAllowedGameModes()
|
||||
gameModes.add(gm);
|
||||
}
|
||||
}
|
||||
if(gameModes.size() < 1)
|
||||
if(gameModes.isEmpty())
|
||||
{
|
||||
logger.info("No game-mode's allowed, allowing: " + GameMode.SURVIVAL.name());
|
||||
gameModes.add(GameMode.SURVIVAL);
|
||||
@ -516,14 +517,17 @@ private Sound getSound(String option, String autoValue)
|
||||
return null;
|
||||
}
|
||||
|
||||
private static final @NotNull String DEFAULT_SOUND_OPEN = MCVersion.isNewerOrEqualThan(MCVersion.MC_1_11) ? "BLOCK_SHULKER_BOX_OPEN" : (MCVersion.isNewerOrEqualThan(MCVersion.MC_1_9_2) ? "BLOCK_CHEST_OPEN" : "CHEST_OPEN");
|
||||
private static final @NotNull String DEFAULT_SOUND_CLOSE = MCVersion.isNewerOrEqualThan(MCVersion.MC_1_11) ? "BLOCK_SHULKER_BOX_CLOSE" : (MCVersion.isNewerOrEqualThan(MCVersion.MC_1_9_2) ? "BLOCK_CHEST_CLOSE" : "CHEST_CLOSE");
|
||||
|
||||
public Sound getOpenSound()
|
||||
{
|
||||
return getSound("OpenSound", MCVersion.isNewerOrEqualThan(MCVersion.MC_1_11) ? "BLOCK_SHULKER_BOX_OPEN" : (MCVersion.isNewerOrEqualThan(MCVersion.MC_1_9_2) ? "BLOCK_CHEST_OPEN" : "CHEST_OPEN"));
|
||||
return getSound("OpenSound", DEFAULT_SOUND_OPEN);
|
||||
}
|
||||
|
||||
public Sound getCloseSound()
|
||||
{
|
||||
return getSound("CloseSound", MCVersion.isNewerOrEqualThan(MCVersion.MC_1_11) ? "BLOCK_SHULKER_BOX_CLOSE" : (MCVersion.isNewerOrEqualThan(MCVersion.MC_1_9_2) ? "BLOCK_CHEST_CLOSE" : "CHEST_CLOSE"));
|
||||
return getSound("CloseSound", DEFAULT_SOUND_CLOSE);
|
||||
}
|
||||
//endregion
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user