3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-16 13:01:24 +02:00

Merge pull request #416 from Qveshn/fix/paste-double-transformation

Fix entities double transformation copy-rotate-paste and stack
Dieser Commit ist enthalten in:
Matthew Miller 2018-05-27 16:49:32 +10:00 committet von GitHub
Commit 6e22a8a4f0
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -243,6 +243,8 @@ public class ForwardExtentCopy implements Operation {
if (currentTransform == null) {
currentTransform = transform;
} else {
currentTransform = currentTransform.combine(transform);
}
ExtentBlockCopy blockCopy = new ExtentBlockCopy(source, from, destination, to, currentTransform);
@ -251,7 +253,6 @@ public class ForwardExtentCopy implements Operation {
RegionVisitor blockVisitor = new RegionVisitor(region, function);
lastVisitor = blockVisitor;
currentTransform = currentTransform.combine(transform);
if (copyingEntities) {
ExtentEntityCopy entityCopy = new ExtentEntityCopy(from, destination, to, currentTransform);