diff --git a/src/npc/surgery/organs.js b/src/npc/surgery/organs.js index 32820149bbfcf0ea1d4d6bd2fd27d9b1373e6d67..8401afec4f33f5c39ccc3ed0cab2cf7ec2ea634b 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;