Skip to content

Commit

Permalink
refactor IMinecraftClient rightClick [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Wide-Cat committed Sep 11, 2024
1 parent 4b05fba commit 4ed2ee0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ private void onRender(CallbackInfo info) {
// Interface

@Override
public void rightClick() {
public void meteor_client$rightClick() {
rightClick = true;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
package meteordevelopment.meteorclient.mixininterface;

public interface IMinecraftClient {
void rightClick();
void meteor_client$rightClick();
}
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ public static void leftClick() {
}

public static void rightClick() {
((IMinecraftClient) mc).rightClick();
((IMinecraftClient) mc).meteor_client$rightClick();
}

public static boolean isShulker(Item item) {
Expand Down

0 comments on commit 4ed2ee0

Please sign in to comment.