mirror of
https://github.com/vegapnk/RJW-Genes.git
synced 2024-08-15 00:23:31 +00:00
Added a flag to check for 'can rape' for animals
This commit is contained in:
parent
a0ca9e1da4
commit
fda2580c9f
3 changed files with 17 additions and 3 deletions
|
@ -29,8 +29,13 @@ namespace RJW_Genes
|
|||
{
|
||||
if (ends_manhunter)
|
||||
EndManHunter(animal);
|
||||
ForceBreedingJob(toBeBred, animal);
|
||||
breeder_counter++;
|
||||
|
||||
if (!RJW_Genes_Settings.animalMatingPulseCheckForGenitals || rjw.xxx.can_rape(animal))
|
||||
{
|
||||
ForceBreedingJob(toBeBred, animal);
|
||||
breeder_counter++;
|
||||
}
|
||||
|
||||
}
|
||||
ModLog.Message($"{breeder_counter} of {animals.Count()} Animals in range are trying to breed {toBeBred}");
|
||||
}
|
||||
|
|
|
@ -48,6 +48,9 @@ namespace RJW_Genes
|
|||
listing_Standard.Gap(4f);
|
||||
listing_Standard.CheckboxLabeled("rjw_genes_settings_regret_stealing_love_key".Translate(), ref regretStealingLovinThoughtDisabled, "rjw_genes_settings_regret_stealing_love_explanation".Translate());
|
||||
|
||||
listing_Standard.Gap(4f);
|
||||
listing_Standard.CheckboxLabeled("rjw_genes_settings_animal_mating_needs_penis_key".Translate(), ref animalMatingPulseCheckForGenitals, "rjw_genes_settings_animal_mating_needs_penis_explanation".Translate());
|
||||
|
||||
listing_Standard.Gap(5f);
|
||||
listing_Standard.CheckboxLabeled("rjw_genes_settings_generous_donor_cheatmode_key".Translate(), ref rjw_genes_generous_donor_cheatmode, "rjw_genes_settings_generous_donor_cheatmode_explanation".Translate(), 0f, 1f);
|
||||
|
||||
|
@ -63,6 +66,8 @@ namespace RJW_Genes
|
|||
Scribe_Values.Look<float>(ref RJW_Genes_Settings.rjw_genes_fertilin_from_animals_factor, "rjw_genes_fertilin_from_animals_factor", RJW_Genes_Settings.rjw_genes_fertilin_from_animals_factor, true);
|
||||
Scribe_Values.Look<bool>(ref RJW_Genes_Settings.rjw_genes_detailed_debug, "rjw_genes_detailed_debug", RJW_Genes_Settings.rjw_genes_detailed_debug, true);
|
||||
Scribe_Values.Look(ref regretStealingLovinThoughtDisabled, "regretStealingLovinThoughtDisabled", regretStealingLovinThoughtDisabled, true);
|
||||
|
||||
Scribe_Values.Look(ref animalMatingPulseCheckForGenitals, "animalMatingPulseCheckForGenitals", animalMatingPulseCheckForGenitals, true);
|
||||
Scribe_Values.Look<bool>(ref RJW_Genes_Settings.rjw_genes_generous_donor_cheatmode, "rjw_genes_generous_donor_cheatmode", RJW_Genes_Settings.rjw_genes_generous_donor_cheatmode, true);
|
||||
Scribe_Values.Look<bool>(ref RJW_Genes_Settings.rjw_genes_sexdemon_visit, "rjw_genes_sexdemon_visit", RJW_Genes_Settings.rjw_genes_sexdemon_visit, true);
|
||||
Scribe_Values.Look<bool>(ref RJW_Genes_Settings.rjw_genes_sexdemon_join_size_matters, "rjw_genes_sexdemon_join_size_matters", RJW_Genes_Settings.rjw_genes_sexdemon_join_size_matters, true);
|
||||
|
@ -75,6 +80,7 @@ namespace RJW_Genes
|
|||
public static float rjw_genes_fertilin_from_animals_factor = 0.1f;
|
||||
public static float rjw_genes_resizing_age = 20;
|
||||
public static bool regretStealingLovinThoughtDisabled = false;
|
||||
public static bool animalMatingPulseCheckForGenitals = true;
|
||||
|
||||
public static bool rjw_genes_sexdemon_visit = true;
|
||||
public static bool rjw_genes_sexdemon_join_size_matters = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue