Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions mh-item-links.user.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// ==UserScript==
// @name 🐭️ MouseHunt - Item Links
// @version 1.4.6
// @version 1.4.7
// @description Add links to the MouseHunt wiki, MHCT looter, MHDB, and Markethunt for items.
// @license MIT
// @author bradp
Expand Down Expand Up @@ -131,7 +131,7 @@
// Link to markethunt.
const isTradable = document.querySelectorAll('.itemView-sidebar-checklistItem.checked');
if (args.forceType === 'marketplace' || (isTradable && isTradable.length === 2)) {
newText.innerHTML += makeLink('Markethunt', `https://markethunt.vsong.ca/index.php?item_id=${itemID}`);
newText.innerHTML += makeLink('Markethunt', `https://markethunt.win/index.php?item_id=${itemID}`);
}

return newText;
Expand Down