mirror of
https://gitgud.io/AbstractConcept/rimworld-animations-patch.git
synced 2024-08-15 00:43:27 +00:00
v 2.0.8
- Implemented potential fix for users experiencing a 'null pawn reference' when pawns masturbate
This commit is contained in:
parent
91b3a80400
commit
4f407628b1
9 changed files with 6 additions and 4 deletions
Binary file not shown.
|
@ -1,3 +1,6 @@
|
||||||
|
Change log v 2.0.8
|
||||||
|
- Implemented potential fix for users experiencing a 'null pawn reference' when pawns masturbate
|
||||||
|
|
||||||
Change log v 2.0.7
|
Change log v 2.0.7
|
||||||
- Fixed issue where apparel settings were not being saved between sessions
|
- Fixed issue where apparel settings were not being saved between sessions
|
||||||
- Using the 'set all true / false' buttons in the apparel settings now only applies to the apparel that are currently displayed in the configuration table
|
- Using the 'set all true / false' buttons in the apparel settings now only applies to the apparel that are currently displayed in the configuration table
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
<Manifest>
|
<Manifest>
|
||||||
<version>2.0.7</version>
|
<version>2.0.8</version>
|
||||||
<downloadUri>https://gitgud.io/AbstractConcept/rimworld-animations-patch</downloadUri>
|
<downloadUri>https://gitgud.io/AbstractConcept/rimworld-animations-patch</downloadUri>
|
||||||
</Manifest>
|
</Manifest>
|
|
@ -1,7 +1,6 @@
|
||||||
<?xml version="1.0" encoding="utf-8" ?>
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
<Defs>
|
<Defs>
|
||||||
|
|
||||||
|
|
||||||
<Rimworld_Animations.AnimationDef>
|
<Rimworld_Animations.AnimationDef>
|
||||||
<defName>MasturbationWithPenis_Standing</defName>
|
<defName>MasturbationWithPenis_Standing</defName>
|
||||||
<label>Masturbating</label>
|
<label>Masturbating</label>
|
||||||
|
@ -2123,7 +2122,7 @@
|
||||||
|
|
||||||
<Rimworld_Animations.AnimationDef>
|
<Rimworld_Animations.AnimationDef>
|
||||||
<defName>MasturbationHumping_InBed</defName>
|
<defName>MasturbationHumping_InBed</defName>
|
||||||
<label>Masturbating</label>
|
<label>Masturbating</label>
|
||||||
<tags>
|
<tags>
|
||||||
<li>masturbatin'.</li>
|
<li>masturbatin'.</li>
|
||||||
</tags>
|
</tags>
|
||||||
|
|
Binary file not shown.
|
@ -76,7 +76,7 @@ namespace Rimworld_Animations_Patch
|
||||||
|
|
||||||
SexProps sexProps = new SexProps();
|
SexProps sexProps = new SexProps();
|
||||||
sexProps.pawn = __instance.pawn;
|
sexProps.pawn = __instance.pawn;
|
||||||
sexProps.partner = null;
|
sexProps.partner = __instance.pawn;
|
||||||
sexProps.sexType = xxx.rjwSextype.Masturbation;
|
sexProps.sexType = xxx.rjwSextype.Masturbation;
|
||||||
|
|
||||||
IEnumerable<InteractionDef> interactionDefs = DefDatabase<InteractionDef>.AllDefs.Where(x => x.HasModExtension<InteractionExtension>());
|
IEnumerable<InteractionDef> interactionDefs = DefDatabase<InteractionDef>.AllDefs.Where(x => x.HasModExtension<InteractionExtension>());
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in a new issue