diff --git a/About/About.xml b/About/About.xml
index ceea282..71e2cdb 100644
--- a/About/About.xml
+++ b/About/About.xml
@@ -20,18 +20,23 @@
https://github.com/UnlimitedHugs/RimworldHugsLib/releases/latest
steam://url/CommunityFilePage/818773962
-
- rim.job.world
- RimJobWorld
- https://www.loverslab.com/topic/110270-mod-rimjobworld/
-
+
+ rim.job.world
+ RimJobWorld
+ https://www.loverslab.com/topic/110270-mod-rimjobworld/
+
UnlimitedHugs.HugsLib
brrainz.harmony
- rim.job.world
+ rim.job.world
- RJW Events
-
+ RJW Events
+
+ Questions, suggestions or bugs?
+ Chat with me on the forums: https://www.loverslab.com/topic/166368-mod-rjw-orgy-event/
+ Or on the rjw discord: https://discord.gg/CXwHhv8
+
+
diff --git a/About/Manifest.xml b/About/Manifest.xml
index 2a41c8c..330bf41 100644
--- a/About/Manifest.xml
+++ b/About/Manifest.xml
@@ -1,5 +1,5 @@
RJW-Events
- 0.0.1
+ 0.0.2
\ No newline at end of file
diff --git a/Source/JobGivers/JobGiver_FindOrgyPartner.cs b/Source/JobGivers/JobGiver_FindOrgyPartner.cs
index d8ae726..ec0e7ba 100644
--- a/Source/JobGivers/JobGiver_FindOrgyPartner.cs
+++ b/Source/JobGivers/JobGiver_FindOrgyPartner.cs
@@ -54,12 +54,11 @@ namespace RJW_Events
List targets = LordUtility.GetLord(pawn).ownedPawns;
- Pawn pawn2 = null;
- if(!BestPawnForOrgyExists(pawn, targets, out pawn2))
+ if (!BestPawnForOrgyExists(pawn, targets, out Pawn pawn2))
{
- return null;
+ return null;
}
- if (pawn2 == null)
+ if (pawn2 == null)
{
return null;
}
diff --git a/Source/LordJobs/LordJob_Joinable_Orgy.cs b/Source/LordJobs/LordJob_Joinable_Orgy.cs
index 34630d0..d1f4368 100644
--- a/Source/LordJobs/LordJob_Joinable_Orgy.cs
+++ b/Source/LordJobs/LordJob_Joinable_Orgy.cs
@@ -59,6 +59,5 @@ namespace RJW_Events
{
return timeoutTrigger.TicksLeft < 300;
}
-
}
}