From 721fb7bd7aa5ef1b84ac1521796a58b3a4c35359 Mon Sep 17 00:00:00 2001 From: ceikry Date: Mon, 19 Jul 2021 14:20:49 -0500 Subject: [PATCH] Change latest update link in button --- src/main/kotlin/MainWindow.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/MainWindow.kt b/src/main/kotlin/MainWindow.kt index eb9fa23..2ecc9cc 100644 --- a/src/main/kotlin/MainWindow.kt +++ b/src/main/kotlin/MainWindow.kt @@ -95,7 +95,7 @@ object MainWindow : JFrame("2009scape Launcher") { button.onMouseExit { label.isVisible = false } button.onClick { if (Desktop.isDesktopSupported() && Desktop.getDesktop().isSupported(Desktop.Action.BROWSE)) { - Desktop.getDesktop().browse(URI("https://2009scape.org/services/m=news/archives/2021-07-12.html")); + Desktop.getDesktop().browse(URI("https://2009scape.org/services/m=news/archives/latest.html")); } } button.placeAt(5,4,35,35)