From 039698bafbac65dd969b14e3f84a20b863fb88b1 Mon Sep 17 00:00:00 2001 From: DCoded <dicoded@email.com> Date: Mon, 7 Feb 2022 14:08:43 -0500 Subject: [PATCH] Minor linting and formatting change --- src/interaction/useSlave/useSlave.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/interaction/useSlave/useSlave.js b/src/interaction/useSlave/useSlave.js index 95531ea3040..6fa12979695 100644 --- a/src/interaction/useSlave/useSlave.js +++ b/src/interaction/useSlave/useSlave.js @@ -44,7 +44,7 @@ App.UI.SlaveInteract.useSlave = function(slave) { if (introShown) { div.append(`You are out of stamina.`); } else { - App.UI.DOM.appendNewElement("span", div, `You have recently had sex with ${him}`, "note"); + App.UI.DOM.appendNewElement("span", div, `You have recently had sex with ${him}`, ["note"]); } } @@ -176,6 +176,7 @@ App.UI.SlaveInteract.useSlave = function(slave) { const noUnderwearOutfits = ["a burkini", "a comfortable bodysuit", "a tight Imperial bodysuit", "a cybersuit", "a fallen nuns habit", "a leotard", "a latex catsuit", "a monokini", "a one-piece swimsuit", "a scalemail bikini", "a slutty klan robe", "a slutty maid outfit", "a slutty nurse outfit", "a slutty pony outfit", "a slutty qipao", "a slutty schutzstaffel uniform", "a string bikini", "a succubus outfit", "a toga", "an apron", "chains", "clubslut netting", "harem gauze", "overalls", "restrictive latex", "shibari ropes", "slutty business attire", "slutty jewelry", "uncomfortable straps"]; // ex. swimsuits, slutty jewelry, bodysuits const noBottomOutfits = ["a button-up shirt", "a sweater", "a t-shirt", "a tank-top", "a tube top", "an oversized t-shirt"]; const noTopOutfits = ["boyshorts", "cutoffs", "jeans", "leather pants", "sport shorts"]; + if (nakedOutfits.includes(slave.clothes)) { slaveState.clothing.top.isOff = true; slaveState.clothing.bottom.isOff = true; -- GitLab