diff --git a/html/changelog.html b/html/changelog.html index f92bae4..eb14016 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -1,3 +1,14 @@ +
+
1.15.0
+
+

+ What's new? +

+ +
+
1.14.3
diff --git a/html/index.html b/html/index.html index c895d1b..3a764e9 100644 --- a/html/index.html +++ b/html/index.html @@ -11,8 +11,17 @@
+ + + + + @@ -21,10 +30,10 @@

Please refresh the page for changes to come into effect!

-
+
- \ No newline at end of file + diff --git a/src/skinport/content_script.ts b/src/skinport/content_script.ts index 4422356..113bbd6 100644 --- a/src/skinport/content_script.ts +++ b/src/skinport/content_script.ts @@ -875,7 +875,7 @@ function generateBuffContainer(container: HTMLElement, priceListing: number, pri buffPriceAsk.textContent = `Ask ${currencySymbol}${priceListing.toFixed(2)}`; buffPrice.appendChild(buffPriceAsk); buffContainer.appendChild(buffPrice); - if (priceOrder > priceListing * 1.1) { + if (priceOrder > priceListing) { const warningImage = document.createElement('img'); warningImage.setAttribute('src', extensionSettings.runtimePublicURL + '/triangle-exclamation-solid.svg'); warningImage.setAttribute('style', `height: 20px; margin-left: 5px; filter: brightness(0) saturate(100%) invert(28%) sepia(95%) saturate(4997%) hue-rotate(3deg) brightness(103%) contrast(104%);${isItemPage ? 'margin-bottom: 1px;' : ''}`);