File tree Expand file tree Collapse file tree 4 files changed +7
-2
lines changed
java/io/github/axolotlclient/modules/hypixel
resources/assets/axolotlclient/lang Expand file tree Collapse file tree 4 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ org.gradle.jvmargs=-Xmx1G
77 loader_version = 0.14.8
88
99# Mod Properties
10- mod_version = 2.1.0 +1.8.9
10+ mod_version = 2.1.1 +1.8.9
1111 maven_group = io.github.moehreag
1212 archives_base_name = AxolotlClient
1313
Original file line number Diff line number Diff line change 44import io .github .axolotlclient .config .options .OptionCategory ;
55import io .github .axolotlclient .config .options .StringOption ;
66import io .github .axolotlclient .modules .AbstractModule ;
7+ import io .github .axolotlclient .modules .hypixel .autoboop .AutoBoop ;
78import io .github .axolotlclient .modules .hypixel .autogg .AutoGG ;
89import io .github .axolotlclient .modules .hypixel .autotip .AutoTip ;
910import io .github .axolotlclient .modules .hypixel .levelhead .LevelHead ;
@@ -33,6 +34,7 @@ public void init() {
3334 addSubModule (AutoGG .Instance );
3435 addSubModule (AutoTip .INSTANCE );
3536 addSubModule (NickHider .Instance );
37+ addSubModule (AutoBoop .Instance );
3638
3739 subModules .forEach (AbstractHypixelMod ::init );
3840
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ public OptionCategory getCategory() {
2424 }
2525
2626 public void onMessage (Text message ){
27- if (message .getString ().contains ("Friend >" ) && message .getString ().contains ("joined." )){
27+ if (enabled . get () && message .getString ().contains ("Friend >" ) && message .getString ().contains ("joined." )){
2828 String player = message .getString ().substring (message .getString ().indexOf (">" ) + 2 , message .getString ().lastIndexOf (" " ));
2929 Util .sendChatMessage ( "/boop " +player );
3030 }
Original file line number Diff line number Diff line change @@ -44,6 +44,8 @@ inGuis=Apply to GUIs
4444
4545motionBlur=Motion Blur
4646zoom=Zoom
47+ timeChanger=Time Changer
48+ time=Time
4749blockOutlines=Block Outlines
4850outlineWidth=Outline Width
4951
@@ -78,6 +80,7 @@ hideOwnName=Hide your own name
7880hideOtherNames=Hide others' names
7981hideOwnSkin=Hide your own skin
8082hideOtherSkins=Hide others' skins
83+ autoBoop=AutoBoop
8184
8285category.axolotlclient=AxolotlClient
8386
You can’t perform that action at this time.
0 commit comments