mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-22 17:27:38 +00:00
Fix entities double transformation
tested with commands stack,copy,rotate,paste 1. //stack 3 up (checked field "repetitions") 2. //copy -e //rotate 45 //rotate 45 //paste (checked transformation)
This commit is contained in:
parent
f67f2ed93e
commit
6a8ff1f4fe
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user