Update GuiSeppukuMainMenu.java

Removed the .html at the end of the link at line 121 so the redirect works
This commit is contained in:
prof 2023-07-31 18:55:46 -05:00 committed by GitHub
parent 21d58fc5b2
commit db52ae0000
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ public final class GuiSeppukuMainMenu extends GuiScreen {
if (desktop != null && desktop.isSupported(Desktop.Action.BROWSE)) {
try {
desktop.browse(new URL("https://seppuku.pw/donate.html").toURI());
desktop.browse(new URL("https://seppuku.pw/donate").toURI());
} catch (Exception e) {
e.printStackTrace();
}