This commit is contained in:
boy0001 2015-02-10 23:23:12 +11:00
parent cde14f8686
commit 85b58b7623
3 changed files with 45 additions and 4 deletions

View file

@ -260,6 +260,8 @@ public enum C {
*/
TELEPORTED_TO_PLOT("&6You have been teleported"),
TELEPORTED_TO_ROAD("&cYou got teleported to the road"),
TELEPORT_IN_SECONDS("&6Teleporting in %s seconds. Do not move..."),
TELEPORT_FAILED("&cTeleportation cancelled due to movement"),
/*
* Set Block
*/
@ -504,7 +506,11 @@ public enum C {
}
public static void saveTranslations() {
manager.saveAll(defaultFile).saveFile(defaultFile);
try {
manager.saveAll(defaultFile).saveFile(defaultFile);
} catch (Exception e) {
e.printStackTrace();
}
}
/**