mirror of
https://gitgud.io/c0ffeeeeeeee/rjw-events.git
synced 2024-08-14 23:57:42 +00:00
versioning
This commit is contained in:
parent
c8b96b4b5c
commit
49fb421099
4 changed files with 17 additions and 14 deletions
|
@ -20,18 +20,23 @@
|
|||
<downloadUrl>https://github.com/UnlimitedHugs/RimworldHugsLib/releases/latest</downloadUrl>
|
||||
<steamWorkshopUrl>steam://url/CommunityFilePage/818773962</steamWorkshopUrl>
|
||||
</li>
|
||||
<li>
|
||||
<packageId>rim.job.world</packageId>
|
||||
<displayName>RimJobWorld</displayName>
|
||||
<downloadUrl>https://www.loverslab.com/topic/110270-mod-rimjobworld/</downloadUrl>
|
||||
</li>
|
||||
<li>
|
||||
<packageId>rim.job.world</packageId>
|
||||
<displayName>RimJobWorld</displayName>
|
||||
<downloadUrl>https://www.loverslab.com/topic/110270-mod-rimjobworld/</downloadUrl>
|
||||
</li>
|
||||
</modDependencies>
|
||||
<loadAfter>
|
||||
<li>UnlimitedHugs.HugsLib</li>
|
||||
<li>brrainz.harmony</li>
|
||||
<li>rim.job.world</li>
|
||||
<li>rim.job.world</li>
|
||||
</loadAfter>
|
||||
<description>
|
||||
RJW Events
|
||||
</description>
|
||||
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
|
||||
|
||||
</description>
|
||||
</ModMetaData>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<Manifest>
|
||||
<identifier>RJW-Events</identifier>
|
||||
<version>0.0.1</version>
|
||||
<version>0.0.2</version>
|
||||
</Manifest>
|
|
@ -54,12 +54,11 @@ namespace RJW_Events
|
|||
|
||||
List<Pawn> 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;
|
||||
}
|
||||
|
|
|
@ -59,6 +59,5 @@ namespace RJW_Events
|
|||
{
|
||||
return timeoutTrigger.TicksLeft < 300;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue