Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-07 12:00:07 +01:00
Port fixed for #389 from 1.15.2 adapter to other adapters.
Dieser Commit ist enthalten in:
Ursprung
318e367cf0
Commit
a6a4400317
@ -205,9 +205,10 @@ public class BukkitGetBlocks_1_14 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;
|
||||
}
|
||||
}
|
||||
|
@ -213,9 +213,10 @@ public class BukkitGetBlocks_1_15 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;
|
||||
}
|
||||
}
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren