Skip to content

Commit

Permalink
Disable freelook on MCC island (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
moehreag authored Dec 17, 2023
2 parents a28c338 + 482dbcc commit 008434f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public class FeatureDisabler {
public static void init() {
setServers(AxolotlClient.CONFIG.fullBright, NONE, "gommehd");
setServers(AxolotlClient.CONFIG.lowFire, NONE, "gommehd");
setServers(Freelook.getInstance().enabled, () -> Freelook.getInstance().needsDisabling(), "hypixel", "mineplex", "gommehd", "nucleoid");
setServers(Freelook.getInstance().enabled, () -> Freelook.getInstance().needsDisabling(), "hypixel", "mineplex", "gommehd", "nucleoid", "mccisland");
setServers(((ToggleSprintHud) HudManager.getInstance().get(ToggleSprintHud.ID)).toggleSneak, NONE, "hypixel");

ClientPlayConnectionEvents.JOIN.register((handler, sender, client) -> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public class FeatureDisabler {
public static void init() {
setServers(AxolotlClient.CONFIG.fullBright, NONE, "gommehd");
setServers(AxolotlClient.CONFIG.lowFire, NONE, "gommehd");
setServers(Freelook.getInstance().enabled, () -> Freelook.getInstance().needsDisabling(), "hypixel", "mineplex", "gommehd", "nucleoid");
setServers(Freelook.getInstance().enabled, () -> Freelook.getInstance().needsDisabling(), "hypixel", "mineplex", "gommehd", "nucleoid", "mccisland");
setServers(((ToggleSprintHud) HudManager.getInstance().get(ToggleSprintHud.ID)).toggleSneak, NONE, "hypixel");

ClientPlayConnectionEvents.JOIN.register((handler, sender, client) -> {
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,3 +146,4 @@

- add more Zoom keybinds
- add option(s) to remove certain messages on hypixel (join, mystery box)
- Removed freelook on MCC island (#118 )

0 comments on commit 008434f

Please sign in to comment.