Fixes #1178
This commit is contained in:
dordsor21 2021-07-16 09:52:44 +01:00
parent bcceadee6b
commit d9418ec8ae
No known key found for this signature in database
GPG Key ID: 1E53E88969FFCF0B
1 changed files with 1 additions and 2 deletions

View File

@ -279,8 +279,6 @@ public class ForwardExtentCopy implements Operation {
public Operation resume(RunContext run) throws WorldEditException {
if (currentTransform == null) {
currentTransform = transform;
} else if (!currentTransform.equals(transform)) {
currentTransform = currentTransform.combine(transform);
}
if (lastBiomeVisitor != null) {
affectedBiomeCols += lastBiomeVisitor.getAffected();
@ -408,6 +406,7 @@ public class ForwardExtentCopy implements Operation {
}
if (transExt != null) {
currentTransform = currentTransform.combine(transform);
transExt.setTransform(currentTransform);
}