3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-06 08:02:50 +02:00

correctly set changes to editsession for line/spline

fixes #696
Dieser Commit ist enthalten in:
dordsor21 2020-12-17 15:02:49 +00:00
Ursprung b57c472b86
Commit 236e3c3f6f
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 1E53E88969FFCF0B

Datei anzeigen

@ -2767,7 +2767,7 @@ public class EditSession extends PassthroughExtent implements AutoCloseable {
newVset = this.getHollowed(newVset);
}
}
return setBlocks(newVset, pattern);
return this.changes += setBlocks(newVset, pattern);
}
/**
@ -2840,7 +2840,7 @@ public class EditSession extends PassthroughExtent implements AutoCloseable {
if (!filled) {
vset = getHollowed(vset);
}
return setBlocks(vset, pattern);
return this.changes += setBlocks(vset, pattern);
}
/**
@ -2892,7 +2892,7 @@ public class EditSession extends PassthroughExtent implements AutoCloseable {
if (!filled) {
newVset = this.getHollowed(newVset);
}
return setBlocks(newVset, pattern);
return this.changes += setBlocks(newVset, pattern);
}
return changes;
}