Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- try {
- URI uri = new URI("https://google.com");
- GuiConfirmOpenLink confirmOpenLink = new GuiConfirmOpenLink(this, "https://google.com", 13, false);
- this.mc.displayGuiScreen(confirmOpenLink);
- Desktop.getDesktop().browse(uri);
- }
- catch(URISyntaxException e) {
- e.printStackTrace();
- } catch (IOException e) {
- e.printStackTrace();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement