mirror of
https://github.com/vegapnk/RJW-Genes.git
synced 2024-08-15 00:23:31 +00:00
Checked that Penis thoughts are only for adults
This commit is contained in:
parent
9e53ecd597
commit
c588939fa7
2 changed files with 5 additions and 1 deletions
|
@ -26,7 +26,8 @@ I know that this is some overlap with the STD mod, but well ... you are free to
|
|||
- Disease Gene: Vulnerability. Pawn is likelier to be raped
|
||||
- Disease Gene: Infectious Hypersexuality
|
||||
- Disease Gene: Infectious Homosexuality & Bisexuality
|
||||
- Disease Gene: Fluctual Sexual Need. (Configurable) Chance to reset sex-need to near-zero and gain a bit of rest-need.
|
||||
- Disease Gene: Fluctual Sexual Need. (Configurable) Chance to reset sex-need to near-zero and gain a bit of rest-need.
|
||||
- Disease Gene: Size Blinded. Pawns have a higher chance for hooking up with pawns with a big cock, lower chance for small cocks.
|
||||
|
||||
**Fixes:**
|
||||
|
||||
|
@ -36,6 +37,7 @@ I know that this is some overlap with the STD mod, but well ... you are free to
|
|||
|
||||
- GenderFluid-Gene now uses a generalized `TickBasedChanceExtension` over its unique special `GenderFluidExtension`
|
||||
- Introduced a `ModLog.Debug` Function that checks for the settings before printing - trying to spread it over the whole project.
|
||||
- Removed TODO File. I have enough to do.
|
||||
|
||||
# 2.1.0 (27-06-2024)
|
||||
|
||||
|
|
|
@ -26,6 +26,8 @@ namespace RJW_Genes
|
|||
// Do nothing if Pawn is Baby or Child (#25)
|
||||
if (!pawn.ageTracker.Adult)
|
||||
return (ThoughtState)false;
|
||||
if (!other.ageTracker.Adult)
|
||||
return (ThoughtState)false;
|
||||
// Only check if they are spawned humans
|
||||
if (!pawn.Spawned || !other.Spawned)
|
||||
return (ThoughtState)false;
|
||||
|
|
Loading…
Reference in a new issue