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

Attempted fix for #329

Removing this code seemed to fix the issue while not breaking general editing abilities. Needs testing to determine any unintended side effects!
Dieser Commit ist enthalten in:
IronApollo 2020-02-01 20:28:48 -05:00
Ursprung 83bb3966ca
Commit 4f3db6f3da

Datei anzeigen

@ -189,9 +189,10 @@ public class BukkitGetBlocks_1_15_2 extends CharGetBlocks {
if (this.sections == null) {
this.sections = sections.clone();
}
if (this.sections[layer] != section) {
this.sections[layer] = section;
}
//TODO: Understand why this causes #329, what the purpose of this is, and what may or may not break after commenting this out.
// if (this.sections[layer] != section) {
// this.sections[layer] = section;
// }
this.blocks[layer] = arr;
}
}