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!
This commit is contained in:
IronApollo 2020-02-01 20:28:48 -05:00
parent 83bb3966ca
commit 4f3db6f3da

View File

@ -189,9 +189,10 @@ public class BukkitGetBlocks_1_15_2 extends CharGetBlocks {
if (this.sections == null) { if (this.sections == null) {
this.sections = sections.clone(); this.sections = sections.clone();
} }
if (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.
this.sections[layer] = section; // if (this.sections[layer] != section) {
} // this.sections[layer] = section;
// }
this.blocks[layer] = arr; this.blocks[layer] = arr;
} }
} }