From bea74ca6649d491760cb9ffb9d68c779b2658b46 Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Tue, 29 Dec 2020 20:06:15 -0500 Subject: [PATCH] improve tooltip --- src/interaction/siWardrobe.js | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/src/interaction/siWardrobe.js b/src/interaction/siWardrobe.js index c415a2e7cb8..d87b0171c71 100644 --- a/src/interaction/siWardrobe.js +++ b/src/interaction/siWardrobe.js @@ -1099,13 +1099,20 @@ App.UI.SlaveInteract.wardrobe = function(slave) { desc = desc || ""; if (clothingData) { if (clothingData.fs) { - if (clothingData.fs.loves) { - const lovers = []; - for (const FS of clothingData.fs.loves) { - lovers.push(App.Data.FutureSociety.records[FS].noun); - } - if (lovers.length > 0) { - desc += (` ${arrayToSentence(lovers)} will love this. `); // TODO: Please move tooltip to array when that becomes possible + const reactions = new Map([ + ["loves", "love"], + ["tolerates", "tolerate"], + ["hates", "hate"], + ]); + for (const [key, value] of reactions) { + if (clothingData.fs[key]) { + const lovers = []; + for (const FS of clothingData.fs[key]) { + lovers.push(App.Data.FutureSociety.records[FS].noun); + } + if (lovers.length > 0) { + desc += (` ${arrayToSentence(lovers)} will ${value} this. `); // TODO: Please move tooltip to array when that becomes possible + } } } } -- GitLab