We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3dbc7c commit 20f9d45Copy full SHA for 20f9d45
src/client/java/com/coflnet/utils/SellAmountParser.java
@@ -67,7 +67,7 @@ public static long extractSellInstantlyAmountFromTooltip(List<Text> lines) {
67
for (Text line : lines) {
68
String lineText = line.getString();
69
// Check if the description says "You don't have anything to sell" - treat as 0 value
70
- if (lineText.contains("You don't have anything to sell")) {
+ if (lineText.contains("You don't have anything to sell") || lineText.contains("None to sell in your inventory")) {
71
return 0;
72
}
73
Matcher matcher = SELL_INSTANTLY_PATTERN.matcher(lineText);
0 commit comments