Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-20 09:50:06 +01:00
fix: chunks should only be initialised in the getOrCreateChunk method (#2462)
Dieser Commit ist enthalten in:
Ursprung
256ef74452
Commit
36a892eb37
@ -135,9 +135,6 @@ public interface IQueueExtent<T extends IChunk> extends Flushable, Trimable, ICh
|
|||||||
return block;
|
return block;
|
||||||
}
|
}
|
||||||
T chunk = this.getOrCreateChunk(chunkX, chunkZ);
|
T chunk = this.getOrCreateChunk(chunkX, chunkZ);
|
||||||
// Initialize
|
|
||||||
chunk.init(this, chunkX, chunkZ);
|
|
||||||
chunk.setFastMode(isFastMode());
|
|
||||||
|
|
||||||
T newChunk = filter.applyChunk(chunk, region);
|
T newChunk = filter.applyChunk(chunk, region);
|
||||||
if (newChunk != null) {
|
if (newChunk != null) {
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren