diff --git a/src/endWeek/healthFunctions.js b/src/endWeek/healthFunctions.js index ef9f85fe1cc322c444f6490279090b27cf5715cc..cb4c9a919061aa712bdfa1e57ffb11e3a9e57df3 100644 --- a/src/endWeek/healthFunctions.js +++ b/src/endWeek/healthFunctions.js @@ -430,7 +430,7 @@ globalThis.endWeekHealthDamage = function(slave) { // recovering and converting short term damage to long term if (H.shortDamage > 0) { // short term damage begins converting to long term damage at 20+ - shortToLong += Math.trunc(H.shortDamage * 0.1); + shortToLong += Math.trunc(H.shortDamage * 0.05); H.longDamage += shortToLong; // short term damage reduces by half each week normally // 100+ long term damage begins to harm short term recovery diff --git a/src/js/slaveListing.js b/src/js/slaveListing.js index 2b9f0d6edbf69f7f6a48c216663d8d3ece669e7d..21dde175a0fb61ddd6ed45b0e0fd15dd41d93bd8 100644 --- a/src/js/slaveListing.js +++ b/src/js/slaveListing.js @@ -548,7 +548,7 @@ App.UI.SlaveList.sortingLinks = function(passage) { const textify = string => capFirstChar(string.replace(/([A-Z])/g, " $1")); let span = App.UI.DOM.makeElement("span", "Sort by: "); - let order = ["devotion", "trust", "name", "assignment", "seniority", "actualAge", "visualAge", "physicalAge", "weeklyIncome", "health", "weight", "muscles", "intelligence", "sexDrive", "pregnancy", "prestige"]; + let order = ["devotion", "trust", "name", "assignment", "seniority", "actualAge", "visualAge", "physicalAge", "weeklyIncome", "beauty", "health", "weight", "muscles", "intelligence", "sexDrive", "pregnancy", "prestige"]; const orderMap = order.map(so => { return {key: so, name: capFirstChar(so)}; }); diff --git a/src/js/utilsSlaves.js b/src/js/utilsSlaves.js index 74d517ee0c0392df0de49a450bc2ac1a6c99331f..904442e40f8e5350625ed292774934ddbebc66b0 100644 --- a/src/js/utilsSlaves.js +++ b/src/js/utilsSlaves.js @@ -57,6 +57,8 @@ globalThis.SlaveSort = function() { DID: (a, b) => b.ID - a.ID, AweeklyIncome: (a, b) => a.lastWeeksCashIncome - b.lastWeeksCashIncome, DweeklyIncome: (a, b) => b.lastWeeksCashIncome - a.lastWeeksCashIncome, + Abeauty: (a, b) => Beauty(a) - Beauty(b), + Dbeauty: (a, b) => Beauty(b) - Beauty(a), Ahealth: (a, b) => a.health.health - b.health.health, Dhealth: (a, b) => b.health.health - a.health.health, Aweight: (a, b) => a.weight - b.weight,