diff --git a/src/js/useSlave.JS b/src/js/useSlave.JS index b06c192d10325187773daf441cc442a45437be59..8ee20bdc7a5ec2c0f24f739ce07c89d24947ce25 100644 --- a/src/js/useSlave.JS +++ b/src/js/useSlave.JS @@ -314,11 +314,9 @@ window.useSlaveDisplay = function(slave) { } let ML = V.marrying.length; if (((V.MixedMarriage === 1 || V.cheatMode === 1) && slave.relationship !== 5 && slave.relationship !== -3)) { - let eligible = 1; if (V.marrying.includes(slave.ID)) { - eligible = 0; - } - if (eligible !== 0) { + sexOptions.push({text: `You are already marrying ${him} this weekend`}); + } else { if ((ML < 2)) { if ((V.cheatMode === 1) || (ML === 0)) { sexOptions.push({text: `Marry ${him}`, goto: "FMarry"}); @@ -328,8 +326,6 @@ window.useSlaveDisplay = function(slave) { } else { sexOptions.push({text: `You can only marry up to two slaves per week`}); } - } else { - sexOptions.push({text: `You are already marrying ${him} this weekend`}); } } if (V.cheatMode === 1) {