Skip to content

Commit

Permalink
improve hud
Browse files Browse the repository at this point in the history
  • Loading branch information
xia-mc committed Jul 8, 2024
1 parent 312b286 commit 3c5f4a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/main/java/keystrokesmod/clickgui/ClickGui.java
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,7 @@ public void drawScreen(int x, int y, float p) {
this.fontRendererObj.drawCenteredString("v", wd - w_c, h - 5, Utils.getChroma(2L, 900L));
this.fontRendererObj.drawCenteredString("e", wd - w_c, h + 5, Utils.getChroma(2L, 600L));
this.fontRendererObj.drawCenteredString("n", wd - w_c, h + 15, Utils.getChroma(2L, 300L));
this.fontRendererObj.drawCenteredString("bS", wd + 1 + w_c, h + 30, Utils.getChroma(2L, 0L));
this.fontRendererObj.drawCenteredString("(xia__mc forked)", wd + 1 + w_c, h + 45, Utils.getChroma(2L, 0L));
this.fontRendererObj.drawCenteredString("XD", wd + 1 + w_c, h + 30, Utils.getChroma(2L, 0L));
this.drawVerticalLine(wd - 10 - w_c, h - 30, h + 43, Color.white.getRGB());
this.drawVerticalLine(wd + 10 + w_c, h - 30, h + 43, Color.white.getRGB());
if (this.aL != null) {
Expand Down
5 changes: 3 additions & 2 deletions src/main/java/keystrokesmod/module/impl/render/HUD.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package keystrokesmod.module.impl.render;

import com.mojang.realmsclient.gui.ChatFormatting;
import keystrokesmod.module.Module;
import keystrokesmod.module.ModuleManager;
import keystrokesmod.module.impl.player.ChestStealer;
Expand Down Expand Up @@ -127,10 +128,10 @@ private List<String> getDrawTexts() {
String text = "";
switch ((int) watermarkMode.getInput()) {
case 0:
text = "§r§f§lRaven §bX§9D§e";
text = "§r§f§lRaven §bX§9D " + ChatFormatting.GRAY + VERSION;
break;
case 1:
text = "§f§lAugustus b" + VERSION;
text = "§f§lAugustus " + VERSION;
break;
}

Expand Down

0 comments on commit 3c5f4a5

Please sign in to comment.