diff --git a/1.3/Assemblies/C0ffee's RJW Ideology Addons.dll b/1.3/Assemblies/C0ffee's RJW Ideology Addons.dll index deb1197..d36dc39 100644 Binary files a/1.3/Assemblies/C0ffee's RJW Ideology Addons.dll and b/1.3/Assemblies/C0ffee's RJW Ideology Addons.dll differ diff --git a/About/Manifest.xml b/About/Manifest.xml index 5e18089..df657a6 100644 --- a/About/Manifest.xml +++ b/About/Manifest.xml @@ -1,5 +1,5 @@ C0ffeeRIA - 0.0.3 + 0.0.4 diff --git a/CRIALactation/1.3/Assemblies/CRIALactation.dll b/CRIALactation/1.3/Assemblies/CRIALactation.dll index 9eee309..ec924bc 100644 Binary files a/CRIALactation/1.3/Assemblies/CRIALactation.dll and b/CRIALactation/1.3/Assemblies/CRIALactation.dll differ diff --git a/CRIALactation/Source/Thoughts/ThoughtWorker_Precept_Lactating_Essential_Social.cs b/CRIALactation/Source/Thoughts/ThoughtWorker_Precept_Lactating_Essential_Social.cs index b41acd6..7ba9fb9 100644 --- a/CRIALactation/Source/Thoughts/ThoughtWorker_Precept_Lactating_Essential_Social.cs +++ b/CRIALactation/Source/Thoughts/ThoughtWorker_Precept_Lactating_Essential_Social.cs @@ -15,6 +15,8 @@ namespace CRIALactation protected override ThoughtState ShouldHaveThought(Pawn p, Pawn otherPawn) { + if (p == null || otherPawn == null) return false; + if (!LactationUtility.HasMilkableBreasts(otherPawn)) return false; if (LactationUtility.IsHucow(otherPawn)) @@ -27,7 +29,7 @@ namespace CRIALactation } - if(!otherPawn.ageTracker.Adult) + if(otherPawn.ageTracker?.Adult == null || !otherPawn.ageTracker.Adult) { return false; } diff --git a/CRIAOrgy/Assemblies/CRIAOrgy.dll b/CRIAOrgy/Assemblies/CRIAOrgy.dll index 21ec48e..68947c6 100644 Binary files a/CRIAOrgy/Assemblies/CRIAOrgy.dll and b/CRIAOrgy/Assemblies/CRIAOrgy.dll differ