We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a7b095 commit 13735a6Copy full SHA for 13735a6
2 files changed
README.md
@@ -298,6 +298,7 @@ Examples:
298
299
### TooManyHax Improved
300
- Submenu of TooManyHax in the ClickUI/Navigator shows a list of toggleable hacks instead of needing to manually enter the name of each one via cmd.
301
+- Hacks disabled by TooManyHax will be removed from the ClickUI to declutter
302
303

304
src/main/java/net/wurstclient/clickgui/ClickGui.java
@@ -415,6 +415,9 @@ else if(!window.isMinimized())
415
416
// remove by object to avoid index-based removal issues if the
417
// windows list was modified concurrently
418
+ if(!windows.contains(window))
419
+ break;
420
+
421
windows.remove(window);
422
windows.add(window);
423
break;
0 commit comments