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

Merge branch 'pregmod-dev' into 'pregmod-master'

Call out belly implant as blocking ovary implantation

See merge request pregmodfan/fc-pregmod!7125
parents 07b15ac0 f68e47a3
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