From 42a3203777f87d8ac07960c47932eb553c84d288 Mon Sep 17 00:00:00 2001 From: Jesse Boyd Date: Tue, 27 Sep 2016 20:05:57 +1000 Subject: [PATCH] Forgot to flush VS brushes --- core/src/main/java/com/boydti/fawe/config/BBC.java | 1 + favs/src/main/java/com/thevoxelbox/voxelsniper/Sniper.java | 1 + 2 files changed, 2 insertions(+) diff --git a/core/src/main/java/com/boydti/fawe/config/BBC.java b/core/src/main/java/com/boydti/fawe/config/BBC.java index 1d6886bb..102f12a9 100644 --- a/core/src/main/java/com/boydti/fawe/config/BBC.java +++ b/core/src/main/java/com/boydti/fawe/config/BBC.java @@ -151,6 +151,7 @@ public enum BBC { SETTING_DISABLE("&cLacking setting: %s0","Error"), SCHEMATIC_NOT_FOUND("&cSchematic not found: &7%s0", "Error"), NO_REGION("&cYou have no current WorldEdit region", "Error"), + NO_MASK("&cYou have no current mask set", "Error"), NOT_PLAYER("&cYou must be a player to perform this action!", "Error"), PLAYER_NOT_FOUND("&cPlayer not found:&7 %s0", "Error"), OOM( diff --git a/favs/src/main/java/com/thevoxelbox/voxelsniper/Sniper.java b/favs/src/main/java/com/thevoxelbox/voxelsniper/Sniper.java index eff2dbbf..2b65cc1e 100644 --- a/favs/src/main/java/com/thevoxelbox/voxelsniper/Sniper.java +++ b/favs/src/main/java/com/thevoxelbox/voxelsniper/Sniper.java @@ -91,6 +91,7 @@ public class Sniper { } if (tmpQueue != null) { FaweChangeSet changeSet = tmpQueue.getChangeSet(); + changeSet.flushAsync(); FawePlayer fp = FawePlayer.wrap(getPlayer()); LocalSession session = fp.getSession(); session.remember(changeSet.toEditSession(fp));