mirror of
https://github.com/vegapnk/RJW-Genes.git
synced 2024-08-15 00:23:31 +00:00
Merge branch 'vegapnk:dev' into dev
This commit is contained in:
commit
ee1625306a
5 changed files with 78 additions and 3 deletions
14
Common/Patches/Xenotypes/PatchBiotechNyaron.xml
Normal file
14
Common/Patches/Xenotypes/PatchBiotechNyaron.xml
Normal file
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<Patch>
|
||||
<Operation Class="PatchOperationFindMod">
|
||||
<mods>
|
||||
<li>Biotech Nyaron</li>
|
||||
</mods>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/XenotypeDef[defName="Nyaron"]/genes</xpath>
|
||||
<value>
|
||||
<li>rjw_genes_feline_genitalia</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
</Patch>
|
15
Common/Patches/Xenotypes/PatchNarai.xml
Normal file
15
Common/Patches/Xenotypes/PatchNarai.xml
Normal file
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<Patch>
|
||||
<Operation Class="PatchOperationFindMod">
|
||||
<mods>
|
||||
<li>NaraiXenotype</li>
|
||||
</mods>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/XenotypeDef[defName="Narai"]/genes</xpath>
|
||||
<value>
|
||||
<li>rjw_genes_canine_genitalia</li>
|
||||
<li>rjw_genes_zoophile</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
</Patch>
|
17
Common/Patches/Xenotypes/PatchPapou.xml
Normal file
17
Common/Patches/Xenotypes/PatchPapou.xml
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<Patch>
|
||||
<Operation Class="PatchOperationFindMod">
|
||||
<mods>
|
||||
<li>Papou Race : emotional birds</li>
|
||||
</mods>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/XenotypeDef[defName="papago"]/genes</xpath>
|
||||
<value>
|
||||
<li>rjw_genes_orgasm_rush</li>
|
||||
<li>rjw_genes_damage</li>
|
||||
<li>rjw_genes_tight_female_genitalia</li>
|
||||
<li>rjw_genes_tight_anus</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
</Patch>
|
14
Common/Patches/Xenotypes/PatchSaurid.xml
Normal file
14
Common/Patches/Xenotypes/PatchSaurid.xml
Normal file
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<Patch>
|
||||
<Operation Class="PatchOperationFindMod">
|
||||
<mods>
|
||||
<li>Vanilla Races Expanded - Saurid</li>
|
||||
</mods>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/XenotypeDef[defName="VRESaurids_Saurid"]/genes</xpath>
|
||||
<value>
|
||||
<li>rjw_genes_dragon_genitalia</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
</Patch>
|
|
@ -48,7 +48,7 @@ RimWorld.GeneMaker:MakeGene (Verse.GeneDef,Verse.Pawn)
|
|||
|
||||
Reason:
|
||||
|
||||
RJW covers some corner cases when the pawn is changed before creation.
|
||||
RJW covers some corner cases when the pawn is changed before creation. This seems a bit legacy and related to Royalty-Content.
|
||||
|
||||
Current Solution:
|
||||
|
||||
|
@ -56,10 +56,25 @@ Ignore this. The pawns seem to have the right sex and genitalia, I cannot "catch
|
|||
|
||||
Aimed Solution:
|
||||
|
||||
Patch ChangeSex to skip for pawns with the two genes producing this.
|
||||
Patch RJW ChangeSex upstream to skip for pawns with the two genes producing this.
|
||||
|
||||
## Error on Game Load: Verse.GeneDef named rjw_genes_human_genitalia (wanter=genes)
|
||||
|
||||
Error: Issue #4, Game throws a warning on load that some Genes were not found.
|
||||
|
||||
Reason: (Likely) because I removed some genes from Pre-Release to 1.0.0. Now some players have unknown definitions in their safe-files and Xenotype Defs.
|
||||
The removed Genes were the ones that performed default behaviour (e.g. normal breast size, normal penis size, ...)
|
||||
|
||||
Solution: Should be safe to ignore, when you get this on safe-load make a quick new safe. new safe should not throw the error. For Self-Made Xenotypes remove the Genes.
|
||||
|
||||
Sorry about this one, I know removal can break things but hey you were playing with the Prerelease!
|
||||
|
||||
## Insect Breeder does not fertilize
|
||||
|
||||
Update:
|
||||
|
||||
We changed behaviour in [1.0.1](https://github.com/vegapnk/RJW-Genes/releases/tag/1.0.1) and it seems to work now. Please tell us if you still encounter this.
|
||||
|
||||
Error:
|
||||
|
||||
A pawn with insect breeder fucks a pawn with unfertilized insect eggs, but the eggs stay unfertilized.
|
||||
|
|
Loading…
Reference in a new issue