Fix clipboard upload/download

This commit is contained in:
Jesse Boyd
2019-04-15 21:05:26 +10:00
parent 7c54f16d43
commit f849caf655
3 changed files with 19 additions and 25 deletions

View File

@ -176,7 +176,7 @@ public interface ClipboardFormat {
}
}
} catch (IOException e) {
e.printStackTrace();
throw new RuntimeException(e);
}
}
}

View File

@ -178,7 +178,7 @@ public class ClipboardFormats {
return null;
}
URL base = new URL(Settings.IMP.WEB.URL);
input = new URL(base, "uploads/" + input.substring(4) + ".schematic").toString();
input = new URL(base, "uploads/" + input.substring(4) + "." + format.getPrimaryFileExtension()).toString();
}
if (input.startsWith("http")) {
if (!player.hasPermission("worldedit.schematic.load.asset")) {