Compare commits

..

5 commits

Author SHA1 Message Date
yiyuandian
a579434573 Merge branch 'translate_ChineseSimplified_1.4' into 'main'
ChineseSimplified Translate

See merge request lutepickle/rjw_menstruation!5
2024-07-22 22:42:54 +00:00
lutepickle
f58e154ca3 Merge branch 'dev' 2024-07-20 17:36:01 -07:00
lutepickle
c81f94fa04 Fix typo in sex thoughts 2024-06-27 06:09:05 -07:00
lutepickle
fae1d4f2e1 Update changelog 2024-06-23 05:41:29 -07:00
lutepickle
b999c82ebd Check for null genes in VEGeneBloodDef 2024-06-23 05:38:49 -07:00
5 changed files with 6 additions and 3 deletions

Binary file not shown.

View file

@ -321,7 +321,7 @@
<stages>
<li>
<label>{0} came inside</label>
<description>I hope this makes me pregnant like should be.</description>
<description>I hope this makes me pregnant like I should be.</description>
<baseMoodEffect>15</baseMoodEffect>
<baseOpinionOffset>10</baseOpinionOffset>
</li>

View file

@ -8,7 +8,7 @@ namespace RJW_Menstruation
{
public static ThingDef VEGeneBloodDef(Pawn pawn)
{
if (!ModsConfig.BiotechActive) return null;
if (!ModsConfig.BiotechActive || pawn.genes == null) return null;
foreach(Gene gene in pawn.genes.GenesListForReading.Where(gene => gene.Active))
{
ThingDef bloodDef = gene.def.GetModExtension<GeneExtension>()?.customBloodThingDef;

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Manifest>
<identifier>RJW Menstruation</identifier>
<version>1.5.0.0</version>
<version>1.5.0.1</version>
<dependencies>
</dependencies>
<incompatibleWith />

View file

@ -1,3 +1,6 @@
Version 1.5.0.1
- Fix error getting blood color of pawns without genes.
Version 1.5.0.0
- Support for RimWorld 1.5. All future changes to Menstruation will only be for RimWorld 1.5.
- Updated Traditional Chinese translation by Hydrogen.