Skip to content

Commit 97708a9

Browse files
committed
V1.12.1
1 parent 6b24614 commit 97708a9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Steam Web Integration.user.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
// @run-at document-start
3232
// @supportURL https://github.com/Revadike/SteamWebIntegration/issues/
3333
// @updateURL https://github.com/Revadike/SteamWebIntegration/raw/master/Steam%20Web%20Integration.user.js
34-
// @version 1.12.0
34+
// @version 1.12.1
3535
// ==/UserScript==
3636

3737
// ==Code==
@@ -416,7 +416,8 @@ function doApp(elem, wishlist, ownedApps, ignoredApps, followedApps, decommissio
416416
if (settings.wantDLC && dlc && dlc[appID]) { // if DLC and enabled
417417
const base = dlc[appID].base_appID;
418418
const ownsBase = Boolean(ownedApps[base]);
419-
html += getIconHTML(settings.dlcColor, `${subject} (${appID}) is downloadable content for an ${ownsBase ? "" : "un"}owned base game (${base})`, dlclcs, settings.dlcIcon); // ⇩
419+
const extraIcon = `<span style="color: ${ownsBase ? settings.ownedColor : settings.unownedColor};">${ownsBase ? "⁺" : "⁻"}</span>`;
420+
html += getIconHTML(settings.dlcColor, `${subject} (${appID}) is downloadable content for an ${ownsBase ? "" : "un"}owned base game (${base})`, dlclcs, settings.dlcIcon + extraIcon); // ⇩
420421
iconsEncoding += 6;
421422
}
422423

0 commit comments

Comments
 (0)