Skip to content

Commit

Permalink
push to 1.11.4
Browse files Browse the repository at this point in the history
  • Loading branch information
zPeanut committed Jan 3, 2022
1 parent 4c0e45a commit 8614f6e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ apply plugin: 'org.spongepowered.mixin'
// Only edit below this line, the above code adds & enables the necessary things for Forge to be setup.

// The jar version number that will be output when building.
version = '1.11.3'
version = '1.11.4'
// https://maven.apache.org/guides/mini/guide-naming-conventions.html
group = 'me.peanut.hydrogen'
// The jar name that will be output when building.
Expand Down
6 changes: 4 additions & 2 deletions src/main/java/me/peanut/hydrogen/Hydrogen.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import me.peanut.hydrogen.module.modules.ui.ArrayList;
import me.peanut.hydrogen.module.modules.ui.HUD;
import me.peanut.hydrogen.module.modules.ui.Watermark;
import me.peanut.hydrogen.ui.mainmenu.MainMenu;
import me.peanut.hydrogen.utils.FontHelper;
import me.peanut.hydrogen.utils.KeybindManager;
import me.peanut.hydrogen.utils.Utils;
Expand All @@ -30,8 +31,8 @@ public class Hydrogen {
public static final String devs = "zPeanut & UltramoxX";
public static final String prefix = "§7[§9" + name + "§7]";

public static String version = "1.11.3";
public static final String semantic_version = "1.11.3";
public static String version = "1.11.4";
public static final String semantic_version = "1.11.4";

public static final String github = "https://github.com/zpeanut/hydrogen/";
public static final String release = github + "releases/";
Expand Down Expand Up @@ -88,6 +89,7 @@ public void startClient() {
Utils.playSound("startup.wav");
}
new ArrayList();
new MainMenu();
if(firstStart) {
moduleManager.getModule(HUD.class).setEnabled();
moduleManager.getModule(Watermark.class).setEnabled();
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/mcmod.info
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"name":"Hydrogen",
"description":"An open source, mixin based ghost client for Minecraft 1.8.9 built on Minecraft Forge.",
"mcversion": "1.8.9",
"version":"1.11.3",
"version":"1.11.4",
"url": "https://github.com/zPeanut/Hydrogen",
"authorList":["zPeanut", "UltramoxX"],
"credits":"superblaubeere27 for providing most of the initial client base.\nHeroCode for providing the ClickGUI API.\nLemon for providing the Settings system, used in the client.\nAll of my contributors on discord who've reported bugs and suggested modules over the past."
Expand Down

0 comments on commit 8614f6e

Please sign in to comment.