From 7065492740b9149d89a293f185c01bdde1ce60f0 Mon Sep 17 00:00:00 2001 From: Jesse Boyd Date: Sun, 22 Apr 2018 00:09:23 +1000 Subject: [PATCH] Use temporary clipboard --- .../java/com/sk89q/worldedit/command/SchematicCommands.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/sk89q/worldedit/command/SchematicCommands.java b/core/src/main/java/com/sk89q/worldedit/command/SchematicCommands.java index 43e4954c..322b1efb 100644 --- a/core/src/main/java/com/sk89q/worldedit/command/SchematicCommands.java +++ b/core/src/main/java/com/sk89q/worldedit/command/SchematicCommands.java @@ -325,7 +325,7 @@ public class SchematicCommands extends MethodCommands { // If we have a transform, bake it into the copy if (!transform.isIdentity()) { final FlattenedClipboardTransform result = FlattenedClipboardTransform.transform(clipboard, transform, holder.getWorldData()); - target = new BlockArrayClipboard(result.getTransformedRegion(), player.getUniqueId()); + target = new BlockArrayClipboard(result.getTransformedRegion(), UUID.randomUUID()); target.setOrigin(clipboard.getOrigin()); Operations.completeLegacy(result.copyTo(target)); } else {