Partially add migration support

This commit is contained in:
Luck
2016-08-21 22:20:14 +01:00
Unverified
parent bbeed1e4ed
commit dd7aee9d15
15 changed files with 1019 additions and 3 deletions
@@ -298,7 +298,9 @@ public enum Message {
),
IMPORT_END_ERROR_CONTENT("&e(Import) &d-> &c%s", true),
IMPORT_END_ERROR_FOOTER("&e(Import) &7<------------------------------------------>", true);
IMPORT_END_ERROR_FOOTER("&e(Import) &7<------------------------------------------>", true),
MIGRATION_NOT_CONSOLE("Migration must be performed from the Console.", true);
private String message;
private boolean showPrefix;
@@ -89,7 +89,9 @@ public enum Permission {
LOG_TRACK_HISTORY("trackhistory", "log"),
LOG_SEARCH("search", "log"),
LOG_NOTIFY("notify", "log"),
LOG_EXPORT("export", "log");
LOG_EXPORT("export", "log"),
MIGRATION("migration", null);
private String node;
private String group;