Remove clipboard load message

This commit is contained in:
Jesse Boyd 2017-03-06 03:22:53 +11:00
parent 6c505c8c02
commit 150a5b16db
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F
3 changed files with 1 additions and 6 deletions

View File

@ -28,7 +28,7 @@ ext {
date = git.head().date.format("yy.MM.dd")
revision = "-${git.head().abbreviatedId}"
parents = git.head().parentIds;
index = -79; // Offset to mach CI
index = -80; // Offset to mach CI
int major, minor, patch;
major = minor = patch = 0;
for (;parents != null && !parents.isEmpty();index++) {

View File

@ -239,10 +239,6 @@ public enum BBC {
WORLDEDIT_CANCEL_REASON_NO_REGION("No allowed region (bypass with /wea, or disable `region-restrictions` in config.yml)", "Cancel"),
WORLDEDIT_FAILED_LOAD_CHUNK("&cSkipped loading chunk: &7%s0;%s1&c. Try increasing chunk-wait.", "Cancel"),
LOADING_CLIPBOARD("Loading clipboard from disk, please wait.", "History"),
INDEXING_HISTORY("Indexing %s history objects on disk, please wait.", "History"),
INDEXING_COMPLETE("Indexing complete. Took: %s seconds!", "History"),
ASCEND_FAIL("No free spot above you found.", "Navigation"),
ASCENDED_PLURAL("Ascended %s0 levels.", "Navigation"),
ASCENDED_SINGULAR("Ascended a level.", "Navigation"),

View File

@ -217,7 +217,6 @@ public abstract class FawePlayer<T> extends Metadatable {
}
} catch (EmptyClipboardException e) {}
if (player != null && session != null) {
BBC.LOADING_CLIPBOARD.send(this);
WorldData worldData = player.getWorld().getWorldData();
Clipboard clip = doc.toClipboard();
ClipboardHolder holder = new ClipboardHolder(clip, worldData);