mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-23 17:57:38 +00:00
Enabled queue on EditSessions given to scripts.
This commit is contained in:
parent
d5173a8763
commit
888699cae0
@ -930,6 +930,7 @@ public class WorldEdit {
|
|||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} finally {
|
} finally {
|
||||||
for (EditSession editSession : scriptContext.getEditSessions()) {
|
for (EditSession editSession : scriptContext.getEditSessions()) {
|
||||||
|
editSession.flushQueue();
|
||||||
session.remember(editSession);
|
session.remember(editSession);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -63,6 +63,7 @@ public class CraftScriptContext extends CraftScriptEnvironment {
|
|||||||
EditSession editSession =
|
EditSession editSession =
|
||||||
new EditSession(server, player.getWorld(),
|
new EditSession(server, player.getWorld(),
|
||||||
session.getBlockChangeLimit(), session.getBlockBag(player));
|
session.getBlockChangeLimit(), session.getBlockBag(player));
|
||||||
|
editSession.enableQueue();
|
||||||
editSessions.add(editSession);
|
editSessions.add(editSession);
|
||||||
return editSession;
|
return editSession;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user