Skip to content

Commit

Permalink
Possible fix for the servant's money bag tracking
Browse files Browse the repository at this point in the history
I noticed the string was searching for "moneybag", but the in-game chat text uses "money bag" now - dunno when that changed, but I figured adding the space would fix the tracker too.
  • Loading branch information
Diapolo10 authored Aug 31, 2024
1 parent dadf7ee commit 58a6421
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public boolean onGameTick() {
if (widget == null) {
return false;
}
if (!widget.getText().startsWith("The moneybag ")) {
if (!widget.getText().startsWith("The money bag ")) {
return false;
}

Expand Down

0 comments on commit 58a6421

Please sign in to comment.