Recent content by Gnirekcip

  1. G

    Solved World Edit API not pasting

    Solved it! Not sure why, but this code worked: public static void paste(Location location, File schematicFile) { Clipboard clipboard = null; ClipboardFormat format = ClipboardFormats.findByFile(schematicFile); if (format == null) { DebugUtil.severe("World...
  2. G

    Solved World Edit API not pasting

    I am using WE API to paste a .schem file in a world, and when the code is run, nothing happens. No errors are thrown, the blocks just don't get pasted. The schematic file exists and the location exists. Version 1.21.4, worldedit api 7.3.9 public static void paste(Location location, File...