geforkt von Mirrors/FastAsyncWorldEdit
Merge pull request #416 from Qveshn/fix/paste-double-transformation
Fix entities double transformation copy-rotate-paste and stack
Dieser Commit ist enthalten in:
Commit
6e22a8a4f0
@ -243,6 +243,8 @@ public class ForwardExtentCopy implements Operation {
|
|||||||
|
|
||||||
if (currentTransform == null) {
|
if (currentTransform == null) {
|
||||||
currentTransform = transform;
|
currentTransform = transform;
|
||||||
|
} else {
|
||||||
|
currentTransform = currentTransform.combine(transform);
|
||||||
}
|
}
|
||||||
|
|
||||||
ExtentBlockCopy blockCopy = new ExtentBlockCopy(source, from, destination, to, currentTransform);
|
ExtentBlockCopy blockCopy = new ExtentBlockCopy(source, from, destination, to, currentTransform);
|
||||||
@ -251,7 +253,6 @@ public class ForwardExtentCopy implements Operation {
|
|||||||
RegionVisitor blockVisitor = new RegionVisitor(region, function);
|
RegionVisitor blockVisitor = new RegionVisitor(region, function);
|
||||||
|
|
||||||
lastVisitor = blockVisitor;
|
lastVisitor = blockVisitor;
|
||||||
currentTransform = currentTransform.combine(transform);
|
|
||||||
|
|
||||||
if (copyingEntities) {
|
if (copyingEntities) {
|
||||||
ExtentEntityCopy entityCopy = new ExtentEntityCopy(from, destination, to, currentTransform);
|
ExtentEntityCopy entityCopy = new ExtentEntityCopy(from, destination, to, currentTransform);
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren