From f7aba360137eb17d8bcc5ba57544f0445f37097e Mon Sep 17 00:00:00 2001 From: Joshftw Date: Wed, 3 May 2023 22:23:51 +0100 Subject: [PATCH] Update MarketHunt URL and bump version to 1.4.7 This commit updates the MarketHunt URL domain name from markethunt.vsong.ca to markethunt.win as the previous value results in a 404. The userscript header-block version is also bumped to 1.4.7 --- mh-item-links.user.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mh-item-links.user.js b/mh-item-links.user.js index d7eb6ab..425fb4f 100644 --- a/mh-item-links.user.js +++ b/mh-item-links.user.js @@ -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 @@ -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;