Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
)
@Slf4j
public class MKE_WintertodtPlugin extends Plugin {
static final String version = "2.2.1";
static final String version = "2.2.2";

// Core plugin components
@Inject
Expand Down Expand Up @@ -576,4 +576,4 @@ public String getStartupStatus() {
}
return "Starting up...";
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5340,8 +5340,7 @@ private boolean interactWithRewardCart() {

lastRewardCartInteraction = System.currentTimeMillis();

// Try to interact with reward cart by searching for the "Reward" text on the object
var rewardCart = Microbot.getRs2TileObjectCache().query().withName("Reward").nearestOnClientThread();
var rewardCart = Microbot.getRs2TileObjectCache().query().withName("Reward Cart").nearestOnClientThread();
if (rewardCart != null && rewardCart.click("Big-search")) {
Microbot.status = "Interacting with reward cart";
return true;
Expand Down Expand Up @@ -5376,4 +5375,4 @@ private boolean isRewardCartInteractionComplete() {
return false;
}

}
}
Loading