Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
🎱 Fix click aim without autoclicker
Browse files Browse the repository at this point in the history
  • Loading branch information
Tryflle committed Nov 20, 2023
1 parent efc46fb commit 5a9ae83
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public AimAssist() {
@SubscribeEvent
public void onUpdateCenter(LivingUpdateEvent e) {
if (mc.thePlayer == null || mc.currentScreen != null || !mc.inGameHasFocus || (weaponOnly.isToggled() && Utils.Player.isPlayerHoldingWeapon()) || (breakBlocks.isToggled() && breakBlock())) return;
if (!clickAim.isToggled() || (Stormy.moduleManager.getModuleByClazz(AutoClicker.class).isEnabled() && Mouse.isButtonDown(0))) {
if (!clickAim.isToggled() || (Stormy.moduleManager.getModuleByClazz(AutoClicker.class).isEnabled() && Mouse.isButtonDown(0)) || Mouse.isButtonDown(0)) {
Entity en = this.getEnemy();
if (en != null) {
double n = n(en);
Expand Down

0 comments on commit 5a9ae83

Please sign in to comment.