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 e8c802cec963ffda8e0d38edec004461f8cf110b..904442e40f8e5350625ed292774934ddbebc66b0 100644 --- a/src/js/utilsSlaves.js +++ b/src/js/utilsSlaves.js @@ -57,8 +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), + 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,