Skip to content
Snippets Groups Projects
Commit f68e47a3 authored by Pregmodder's avatar Pregmodder
Browse files

Call out belly implant as blocking ovary implantation

parent 584cfd8b
No related branches found
No related tags found
No related merge requests found
......@@ -165,7 +165,7 @@ App.Medicine.OrganFarm.Ovaries = class extends App.Medicine.OrganFarm.Organ {
canImplant: s => (s.vagina >= 0 && s.ovaries <= 0 && s.mpreg === 0 && s.bellyImplant === -1),
implantError: s => {
if (s.vagina < 0) { return "This slave lacks the vagina necessary to accept ovaries."; }
if (s.ovaries >= 0) { return "This slave already has ovaries."; }
if (s.ovaries > 0 || s.mpreg > 0) { return "This slave already has ovaries."; }
return "This slave's body cavity is filled with another organ.";
},
implant: s => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment