Fix bug I created in chunkfinder during testing

This commit is contained in:
Bella 2020-05-16 21:08:38 -04:00
parent 4620f1bb80
commit 77b0e8989c
No known key found for this signature in database
GPG Key ID: DBD4A6030080C8B3
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ public class ChunkFinder extends Module {
@EventHandler
public Listener<ChunkEvent> listener = new Listener<>(event -> {
if (event.getPacket().isFullChunk()) {
if (!event.getPacket().isFullChunk()) {
chunks.add(event.getChunk());
dirty = true;
if (saveNewChunks.getValue()) {