*/
public static String getCase(final String playerName) {
try {
final PropertiesFile propertiesFile = new PropertiesFile(
new File("SpaceModule", "players.properties").getPath());
propertiesFile.load();
final String savedPlayerName = propertiesFile.getString(playerName.toLowerCase());
propertiesFile.save();
if (savedPlayerName != null && !savedPlayerName.equals(""))
return savedPlayerName;
} catch (IOException e) {