Merge pull request #430 from sk89q/feature/chunk-batching-mode

Chunk Batching
This commit is contained in:
Matthew Miller
2018-10-15 13:50:10 +10:00
committed by GitHub
15 changed files with 370 additions and 274 deletions

View File

@ -103,7 +103,7 @@ public class WorldEditBinding extends BindingHelper {
Player sender = getPlayer(context);
LocalSession session = worldEdit.getSessionManager().get(sender);
EditSession editSession = session.createEditSession(sender);
editSession.enableQueue();
editSession.enableStandardMode();
context.getContext().getLocals().put(EditSession.class, editSession);
session.tellVersion(sender);
return editSession;