mirror of
https://gitgud.io/amevarashi/rjw-sexperience-ideology.git
synced 2024-08-15 00:43:19 +00:00
Compare commits
No commits in common. "2855ae3f6c7601e82313ceb680cfb758bfa73835" and "f5ec31f8e7177888b11ea2befd77e3e9ce0a5cad" have entirely different histories.
2855ae3f6c
...
f5ec31f8e7
6 changed files with 4 additions and 10 deletions
Binary file not shown.
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
<Manifest>
|
<Manifest>
|
||||||
<identifier>RJWSexperienceIdeology</identifier>
|
<identifier>RJWSexperienceIdeology</identifier>
|
||||||
<version>1.0.1.2</version>
|
<version>1.0.1.1</version>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<li>RimJobWorld >= 5.3.0</li>
|
<li>RimJobWorld >= 5.3.0</li>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
|
@ -1,6 +1,3 @@
|
||||||
## Version 1.0.1.2
|
|
||||||
* Removed 100% certainty spam for sex proselyzing
|
|
||||||
* Maybe removed sex proselyzing error with bestiality
|
|
||||||
## Version 1.0.1.1
|
## Version 1.0.1.1
|
||||||
* Fixed Ideology overwriting Sexperience's mod settings label
|
* Fixed Ideology overwriting Sexperience's mod settings label
|
||||||
* Fixed submissive gender can't be marked for comfort
|
* Fixed submissive gender can't be marked for comfort
|
||||||
|
|
|
@ -49,10 +49,7 @@ namespace RJWSexperience.Ideology
|
||||||
// Option A: Partner has same Ideo as Pawn, increase certainty
|
// Option A: Partner has same Ideo as Pawn, increase certainty
|
||||||
if (sameIdeo)
|
if (sameIdeo)
|
||||||
{
|
{
|
||||||
if (partner.ideo.Certainty < 1f)
|
partner.ideo.OffsetCertainty(severity);
|
||||||
{
|
|
||||||
partner.ideo.OffsetCertainty(severity);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
// Option B: Partner as different Ideo, try to convert
|
// Option B: Partner as different Ideo, try to convert
|
||||||
else
|
else
|
||||||
|
|
|
@ -94,7 +94,7 @@
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Krafs.Rimworld.Ref">
|
<PackageReference Include="Krafs.Rimworld.Ref">
|
||||||
<Version>1.4.3537</Version>
|
<Version>1.4.3530</Version>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
<PackageReference Include="Lib.Harmony">
|
<PackageReference Include="Lib.Harmony">
|
||||||
<Version>2.2.2</Version>
|
<Version>2.2.2</Version>
|
||||||
|
|
|
@ -238,7 +238,7 @@ namespace RJWSexperience.Ideology.Patches
|
||||||
public static void Postfix(SexProps props)
|
public static void Postfix(SexProps props)
|
||||||
{
|
{
|
||||||
// ShortCuts: Exit Early if Pawn or Partner are null (can happen with Animals or Masturbation)
|
// ShortCuts: Exit Early if Pawn or Partner are null (can happen with Animals or Masturbation)
|
||||||
if (props.pawn?.Ideo == null || !props.hasPartner())
|
if (props.pawn == null || !props.hasPartner())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (props.partner.Ideo?.HasPrecept(VariousDefOf.ProselyzingByOrgasm) == true)
|
if (props.partner.Ideo?.HasPrecept(VariousDefOf.ProselyzingByOrgasm) == true)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue