mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-08-08 05:23:01 +00:00
Resolves #116
This commit is contained in:
parent
cde14f8686
commit
85b58b7623
3 changed files with 45 additions and 4 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue