worldedit api paste schematic

Solutions on MaxInterview for worldedit api paste schematic by the best coders in the world

showing results for - "worldedit api paste schematic"
Maelly
16 May 2019
1try (EditSession editSession = WorldEdit.getInstance().getEditSessionFactory().getEditSession(world, -1)) {
2    Operation operation = new ClipboardHolder(clipboard)
3            .createPaste(editSession)
4            .to(BlockVector3.at(x, y, z))
5            .ignoreAirBlocks(false)
6            .build();
7    Operations.complete(operation);
8}
similar questions
queries leading to this page
worldedit api paste schematic