3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-07 08:32:51 +02:00
Dieser Commit ist enthalten in:
MattBDev 2020-03-31 11:24:10 -04:00
Commit b095d0c29a
2 geänderte Dateien mit 8 neuen und 6 gelöschten Zeilen

Datei anzeigen

@ -205,9 +205,10 @@ public class BukkitGetBlocks_1_14 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;
} }
} }

Datei anzeigen

@ -213,9 +213,10 @@ public class BukkitGetBlocks_1_15 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;
} }
} }