Skip to content

Commit

Permalink
use shiftClick instead
Browse files Browse the repository at this point in the history
  • Loading branch information
Paddyk45 committed Aug 29, 2023
1 parent 5ba8be7 commit df71fa3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/anticope/rejects/modules/AutoGrind.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ private void onOpenScreen(OpenScreenEvent event) {

if (mc.currentScreen == null) break;

InvUtils.quickSwap().slot(i);
InvUtils.shiftClick().slot(i);
InvUtils.move().fromId(2).to(i);
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/anticope/rejects/modules/AutoSoup.java
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ private void onTick(TickEvent.Post event) {

// move soup in inventory to hotbar
if (soupInInventory != -1)
InvUtils.quickSwap().slot(soupInInventory);
InvUtils.shiftClick().slot(soupInInventory);
}

private int findSoup(int startSlot, int endSlot) {
Expand Down

0 comments on commit df71fa3

Please sign in to comment.