Fix ChunkHolder tile set delegation (#2949)

This commit is contained in:
Hannes Greule 2024-10-24 20:25:49 +02:00 committed by GitHub
parent 3806a82f6f
commit fffa5a12ab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -924,7 +924,7 @@ public class ChunkHolder<T extends Future<T>> implements IQueueChunk<T> {
@Override
public boolean tile(final int x, final int y, final int z, final FaweCompoundTag tag) {
return false;
return delegate.set(this).tile(x, y, z, tag);
}
/**