Compare commits

...

3 Commits

Author SHA1 Message Date
noil 2e1e5fcd69
Merge pull request #108 from ProfitDaGod/profit-fixes
Profit fixes
2023-07-31 20:09:36 -04:00
prof e3ba19d1c1
Update FpsGraphComponent.java
fixed FPSGraph hud component being labled "(movement)" until in game
2023-07-31 19:04:32 -05:00
prof db52ae0000
Update GuiSeppukuMainMenu.java
Removed the .html at the end of the link at line 121 so the redirect works
2023-07-31 18:55:46 -05:00
2 changed files with 2 additions and 2 deletions

View File

@ -135,7 +135,7 @@ public final class FpsGraphComponent extends ResizableHudComponent {
// border
RenderUtil.drawBorderedRectBlurred(this.getX(), this.getY(), this.getX() + this.getW(), this.getY() + this.getH(), 2.0f, 0x00000000, 0x90101010);
} else {
mc.fontRenderer.drawStringWithShadow("(movement)", this.getX(), this.getY(), 0xFFAAAAAA);
mc.fontRenderer.drawStringWithShadow("(fps graph)", this.getX(), this.getY(), 0xFFAAAAAA);
}
}

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();
}