We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb1fa9f commit a0d50d6Copy full SHA for a0d50d6
src/main/java/meteordevelopment/meteorclient/systems/modules/player/ToolSaver.java
@@ -159,8 +159,7 @@ private boolean isIgnored(ItemStack tool) {
159
}
160
161
private boolean _canUse(ItemStack tool) {
162
- ToolSaver ts = Modules.get().get(ToolSaver.class);
163
- return !ts.isActive() || ts.isIgnored(tool) || !ts.isBroken(tool) || ts.canBreak(tool);
+ return isActive() || isIgnored(tool) || isBroken(tool) || canBreak(tool);
164
165
166
public static boolean canUse(ItemStack tool) {
0 commit comments