Skip to content

Commit 6ef275e

Browse files
committed
fix: autoarmor trying to do things it shouldnt in the wrong gui
1 parent 89e5004 commit 6ef275e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/main/java/wtf/nebula/impl/module/combat/AutoArmor.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,10 @@ public void onTick(TickEvent event) {
5757
}
5858
}
5959

60+
if (mc.currentScreen != null) {
61+
return;
62+
}
63+
6064
if (timer.passedTime(50L * delay.getValue().longValue(), false)) {
6165

6266
for (int i = 0; i < 4; ++i) {

0 commit comments

Comments
 (0)