From 58a64214559e831160c0f7e283929d69d0e7f51d Mon Sep 17 00:00:00 2001 From: Lari Liuhamo Date: Sat, 31 Aug 2024 17:49:54 +0300 Subject: [PATCH] Possible fix for the servant's money bag tracking 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. --- .../runelite/dudewheresmystuff/coins/ServantsMoneybag.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/dev/thource/runelite/dudewheresmystuff/coins/ServantsMoneybag.java b/src/main/java/dev/thource/runelite/dudewheresmystuff/coins/ServantsMoneybag.java index 2bae53a..1044623 100644 --- a/src/main/java/dev/thource/runelite/dudewheresmystuff/coins/ServantsMoneybag.java +++ b/src/main/java/dev/thource/runelite/dudewheresmystuff/coins/ServantsMoneybag.java @@ -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; }