fix: disable not saving single world chunks (#4416)

Disable not saving single world chunks

- addresses #4413
This commit is contained in:
Jordan 2024-05-09 21:57:58 +09:00 committed by GitHub
parent 5867cc51a7
commit a7447c9d75
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -95,7 +95,8 @@ public class SingleWorldListener implements Listener {
@EventHandler(priority = EventPriority.LOWEST)
public void onChunkLoad(ChunkLoadEvent event) {
handle(event);
// disable this for now, should address https://github.com/IntellectualSites/PlotSquared/issues/4413
// handle(event);
}
}