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

Commit

Permalink
Update KeybindMixin.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Nekiplay authored May 17, 2024
1 parent 3803547 commit c34869c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
@Mixin(value = meteordevelopment.meteorclient.utils.misc.Keybind.class, remap = false)
public class KeybindMixin {
@Inject(method = "canBindTo", at = @At("HEAD"), cancellable = true)
public void canBind(boolean isKey, int value, CallbackInfoReturnable<Boolean> cir) {
public void canBind(boolean isKey, int value, int modifers, CallbackInfoReturnable<Boolean> cir) {
cir.setReturnValue(true);
}
}

0 comments on commit c34869c

Please sign in to comment.