Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-03 01:50:07 +01:00
Ursprung
8e8bd810b5
Commit
fc91c3b56e
@ -22,7 +22,7 @@ public abstract class ReadOnlyClipboard extends SimpleClipboard {
|
||||
|
||||
public ReadOnlyClipboard(Region region) {
|
||||
super(region);
|
||||
this.region = region;
|
||||
this.region = region.clone();
|
||||
}
|
||||
|
||||
public static ReadOnlyClipboard of(final Region region) {
|
||||
|
@ -63,7 +63,7 @@ public class BlockArrayClipboard implements Clipboard {
|
||||
|
||||
public BlockArrayClipboard(Clipboard clipboard, BlockVector3 offset) {
|
||||
this.parent = clipboard;
|
||||
Region shifted = clipboard.getRegion();
|
||||
Region shifted = clipboard.getRegion().clone();
|
||||
shifted.shift(offset);
|
||||
this.region = shifted;
|
||||
this.origin = shifted.getMinimumPoint();
|
||||
@ -84,7 +84,7 @@ public class BlockArrayClipboard implements Clipboard {
|
||||
checkNotNull(parent);
|
||||
checkNotNull(region);
|
||||
this.parent = parent;
|
||||
this.region = region;
|
||||
this.region = region.clone();
|
||||
this.origin = region.getMinimumPoint();
|
||||
}
|
||||
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren