From 9aa6f68eeefda550b5d6a9b4b9032240e753738a Mon Sep 17 00:00:00 2001 From: Arkerthan <arkerthan@gmail.com> Date: Mon, 6 Jul 2020 22:22:00 +0200 Subject: [PATCH] show no errors for non head hair implantation --- src/npc/surgery/organs.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/npc/surgery/organs.js b/src/npc/surgery/organs.js index 32820149bbf..8401afec4f3 100644 --- a/src/npc/surgery/organs.js +++ b/src/npc/surgery/organs.js @@ -424,7 +424,7 @@ App.Medicine.OrganFarm.init = function() { name: "Brow", healthImpact: 5, surgeryType: "restoreHairBrow", autoImplant: false, canImplant: s => (s.eyebrowHStyle === "bald"), - implantError: () => "This slave already has eyebrows.", + implantError: () => "", implant: s => { s.eyebrowHStyle = "natural"; s.eyebrowFullness = "natural"; @@ -435,7 +435,7 @@ App.Medicine.OrganFarm.init = function() { name: "Axillary", healthImpact: 5, surgeryType: "restoreHairPits", autoImplant: false, canImplant: s => (s.underArmHStyle === "bald" || s.underArmHStyle === "hairless"), - implantError: () => "This slave already has underarm hair.", + implantError: () => "", implant: s => { s.underArmHStyle = "bushy"; s.underArmHColor = s.origHColor; @@ -445,7 +445,7 @@ App.Medicine.OrganFarm.init = function() { name: "Pubic", healthImpact: 5, surgeryType: "restoreHairPubes", autoImplant: false, canImplant: s => (s.pubicHStyle === "bald" || s.pubicHStyle === "hairless"), - implantError: () => "This slave already has pubic hair.", + implantError: () => "", implant: s => { s.pubicHStyle = "very bushy"; s.pubicHColor = s.origHColor; -- GitLab