There's an error in the code regarding breeding. This piece of code here requires $breeding to be set to true:
Code:
<<if $pregnancykink is true>><<if $breeding is true>>[[Oversee the Breeding Program|breedingprogram]]<<elseif $Funds gt 29999>>[[Fund the Breeding Program (-30.000)|breedingfund]]<<else>>//You can't afford to fund the Breeding Program!//<</if>><</if>><<else>>//With an influx of new specialised slaves, you'd do well to get a larger place to live...//<</if>><<else>>//Breeding program is locked because the kink is toggled off. You can toggle it back on in the sidebar...//<</if>>
And this piece of code here sets $breeding to true:
Code:
<tw-passagedata pid="763" name="breedingfund" tags="" position="5191,5089" size="100,100"><<set $breeding to true>><<set $Funds to $Funds - 30000>><img src="img/misc/clinic/injection.jpg"/>
The first requires the latter, but the latter doesn't trigger unless you do the first.
If I'm reading the code correctly that is.
Edit: No I'm reading it incorrectly as it seems the statement if $breeding = false should get caught by "Fund the Breeding Program" if funds > 29999. It's weird because my funds are well beyond that and I still get the "//Breeding program is locked because the kink is toggled off. You can toggle it back on in the sidebar...//"
Edit2: So it seems like you need to buy the villa. Basically, the error message is misleading.