diff --git a/1.4/Assemblies/Privacy-Please.dll b/1.4/Assemblies/Privacy-Please.dll index 3c5776e..9883d5c 100644 Binary files a/1.4/Assemblies/Privacy-Please.dll and b/1.4/Assemblies/Privacy-Please.dll differ diff --git a/About/Changelog_v1.0.0.txt b/About/Changelog_v1.0.0.txt deleted file mode 100644 index d74f870..0000000 --- a/About/Changelog_v1.0.0.txt +++ /dev/null @@ -1,2 +0,0 @@ -v 1.0.0 -- Initial release diff --git a/About/Changelog_v1.0.1.txt b/About/Changelog_v1.0.1.txt new file mode 100644 index 0000000..92ff8fc --- /dev/null +++ b/About/Changelog_v1.0.1.txt @@ -0,0 +1,6 @@ +v 1.0.1 +- Fixed a bug that was preventing threesomes from occurring +- Stopped the red text errors from occurring when running this mod without Humanoid Alien Races + +v 1.0.0 +- Initial release diff --git a/Defs/SexActReactionDefs.xml b/Defs/SexActReactionDefs.xml index b00fcc8..aace02a 100644 --- a/Defs/SexActReactionDefs.xml +++ b/Defs/SexActReactionDefs.xml @@ -236,13 +236,13 @@
  • SawHAR_AlienDating_Honorable
  • -
  • +
  • 1 SawHAR_AlienDating_Prohibited
  • -
  • +
  • -1 diff --git a/Defs/ThoughtDefs/ThoughtDefsXenophilia.xml b/Defs/ThoughtDefs/ThoughtDefsXenophilia.xml index 128ce07..8e724dd 100644 --- a/Defs/ThoughtDefs/ThoughtDefsXenophilia.xml +++ b/Defs/ThoughtDefs/ThoughtDefsXenophilia.xml @@ -15,7 +15,7 @@
  • - -1 + -1
  • SawHAR_AlienDating_Horrible
  • @@ -39,7 +39,7 @@ - -1 + -1
  • SawHAR_AlienDating_Prohibited
  • @@ -63,7 +63,7 @@ - 1 + 1
  • SawHAR_AlienDating_Prohibited
  • @@ -87,7 +87,7 @@ - 1 + 1
  • SawHAR_AlienDating_Prohibited
  • @@ -111,7 +111,7 @@ - 1 + 1
  • SawHAR_AlienDating_Prohibited
  • diff --git a/Patches/CheatingThoughtDefs.xml b/Patches/CheatingThoughtDefs.xml index 00f2cf1..5b4bf7f 100644 --- a/Patches/CheatingThoughtDefs.xml +++ b/Patches/CheatingThoughtDefs.xml @@ -1,7 +1,7 @@  - Normal + Always
  • diff --git a/Patches/CompPawnThoughtData.xml b/Patches/CompPawnThoughtData.xml index 900bd35..9e00db2 100644 --- a/Patches/CompPawnThoughtData.xml +++ b/Patches/CompPawnThoughtData.xml @@ -1,7 +1,7 @@  - Normal + Always
  • diff --git a/Patches/FilthDefs.xml b/Patches/FilthDefs.xml index 2201ab2..c639db0 100644 --- a/Patches/FilthDefs.xml +++ b/Patches/FilthDefs.xml @@ -1,7 +1,7 @@  - Normal + Always
  • diff --git a/Source/.vs/SourceCode/v16/.suo b/Source/.vs/SourceCode/v16/.suo index 5ead8cb..3233127 100644 Binary files a/Source/.vs/SourceCode/v16/.suo and b/Source/.vs/SourceCode/v16/.suo differ diff --git a/Source/Scripts/Comps/CompPawnThoughtData.cs b/Source/Scripts/Comps/CompPawnThoughtData.cs index 1b6fef2..57d7bb6 100644 --- a/Source/Scripts/Comps/CompPawnThoughtData.cs +++ b/Source/Scripts/Comps/CompPawnThoughtData.cs @@ -15,7 +15,7 @@ namespace Privacy_Please private Pawn pawn; private int lastExclaimationTick = -1; private int exclaimationCoolDown = 90; - private int lastInvitationTick = 600; + private int lastInvitationTick = -1; private int invitationCoolDown = 600; public override void Initialize(CompProperties props) diff --git a/Source/Scripts/Defs/SexActReactionDef.cs b/Source/Scripts/Defs/SexActReactionDef.cs index 5ab147d..a22f24d 100644 --- a/Source/Scripts/Defs/SexActReactionDef.cs +++ b/Source/Scripts/Defs/SexActReactionDef.cs @@ -75,7 +75,7 @@ namespace Privacy_Please if (applyThoughtDef && thoughtDef.stages[0].baseMoodEffect < 0 && nullifyingTraits?.Any(x => x.HasTrait(reactor)) != true) reactor.TryGetComp()?.TryToExclaim(); // Reactors who have their reactions changed after applying thoughtDefs - if ((otherPawn.jobs.curDriver as JobDriver_Sex)?.Sexprops.isWhoring == true) return ReactionToSexAct.Ignored; + if ((otherPawn.jobs.curDriver as JobDriver_Sex)?.Sexprops?.isWhoring == true) return ReactionToSexAct.Ignored; if (BasicSettings.whoringIsUninteruptable && jobDriver?.Sexprops?.isWhoring == true) return ReactionToSexAct.Uncaring; if (BasicSettings.rapeIsUninteruptable && jobDriver?.Sexprops?.isRape == true) return ReactionToSexAct.Uncaring; diff --git a/Source/obj/Debug/Privacy-Please.dll b/Source/obj/Debug/Privacy-Please.dll index 3c5776e..9883d5c 100644 Binary files a/Source/obj/Debug/Privacy-Please.dll and b/Source/obj/Debug/Privacy-Please.dll differ diff --git a/Source/obj/Debug/Privacy-Please.pdb b/Source/obj/Debug/Privacy-Please.pdb index aaebfd4..5d4de16 100644 Binary files a/Source/obj/Debug/Privacy-Please.pdb and b/Source/obj/Debug/Privacy-Please.pdb differ diff --git a/Source/obj/Debug/SourceCode.csprojAssemblyReference.cache b/Source/obj/Debug/SourceCode.csprojAssemblyReference.cache index 8b8f20f..333fa39 100644 Binary files a/Source/obj/Debug/SourceCode.csprojAssemblyReference.cache and b/Source/obj/Debug/SourceCode.csprojAssemblyReference.cache differ