diff --git a/src/markets/theMarket/buySlaves.js b/src/markets/theMarket/buySlaves.js index 3ae47336396396e16c78e6d19cf09dc0cf42b118..9436335d2684228cdfda8729de924aeea8908a7f 100644 --- a/src/markets/theMarket/buySlaves.js +++ b/src/markets/theMarket/buySlaves.js @@ -203,7 +203,7 @@ App.UI.buySlaves = function() { if (store.note) { App.UI.DOM.appendNewElement("span", el, ` ${store.note}`, "note"); } - if ([].includes(store.marketType)) { + if ([App.Data.misc.schools].includes(store.marketType)) { if (V[store.marketType].schoolSale === 1) { App.UI.DOM.appendNewElement("span", el, `Offering your first purchase at half price this week. `, "yellow"); } diff --git a/src/markets/theMarket/marketData.js b/src/markets/theMarket/marketData.js index bbc11d045dbe9402486059c9afb67c226844ad0f..79079176f4250afa004e1a6d052297b8fb5e332e 100644 --- a/src/markets/theMarket/marketData.js +++ b/src/markets/theMarket/marketData.js @@ -66,7 +66,15 @@ App.Data.Markets = { title: "Raiders' Black Market", marketType: "underage raiders", note: "Very young slaves.", - get requirements() { return ((V.pedo_mode === 1 || (V.minimumSlaveAge <= 13 && V.minimumSlaveAge <= V.fertilityAge)) && V.rep > 3000) ? true : `You are not reputable enough to buy underaged slaves.`; } + get requirements() { + if (V.rep <= 3000) { + return `You are not reputable enough to buy underaged slaves.`; + } else if (V.pedo_mode === 1 || (V.minimumSlaveAge <= 13 && V.minimumSlaveAge <= V.fertilityAge)) { + return true; + } else { + return false; + } + } }, { title: "Trainers' Market",