mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-01 02:17:11 +00:00
Fix: Copy-Paste-Brush with falsy mask (#2899)
* fix: don't attempt to load all possible world chunks when copy pasta brush empty clipboard * chore: move check into ResizableClipboardBuilder
This commit is contained in:
parent
75fb1cbee7
commit
f5f9ae6a85
@ -58,6 +58,9 @@ public class ResizableClipboardBuilder extends MemoryOptimizedHistory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public Clipboard build() {
|
public Clipboard build() {
|
||||||
|
if (longSize() == 0) {
|
||||||
|
return EmptyClipboard.getInstance();
|
||||||
|
}
|
||||||
BlockVector3 pos1 = BlockVector3.at(minX, minY, minZ);
|
BlockVector3 pos1 = BlockVector3.at(minX, minY, minZ);
|
||||||
BlockVector3 pos2 = BlockVector3.at(maxX, maxY, maxZ);
|
BlockVector3 pos2 = BlockVector3.at(maxX, maxY, maxZ);
|
||||||
CuboidRegion region = new CuboidRegion(pos1, pos2);
|
CuboidRegion region = new CuboidRegion(pos1, pos2);
|
||||||
|
Loading…
Reference in New Issue
Block a user