Key price check fix

This commit is contained in:
Abhorrent_Anger 2024-03-21 16:14:21 +02:00
parent 71ceaeb5b8
commit baf9b3921d
1 changed files with 4 additions and 1 deletions

View File

@ -109,7 +109,10 @@ function handleHTML(steam_id, steam_name, html_string) {
inventory.append('<a href="https://next.backpack.tf/profiles/' + steam_id + '"><h3>' + steam_name + '</h3></a>'); inventory.append('<a href="https://next.backpack.tf/profiles/' + steam_id + '"><h3>' + steam_name + '</h3></a>');
decaled_items.each(function () { decaled_items.each(function () {
var parent = $(this).parent(); var parent = $(this).parent();
if (parent.hasClass('q-440-11') || parent.hasClass('nocraft') || parent.attr('data-listing_price').includes('keys')) { var is_strange = parent.hasClass('q-440-11');
var is_uncraftable = parent.hasClass('nocraft');
var is_price_in_keys = $('.bottom-right span', parent).text().includes('key');
if (is_strange || is_uncraftable || is_price_in_keys) {
filtered_item_count++; filtered_item_count++;
return; return;
} }