diff --git a/Assemblies/RJW_Menstruation.dll b/Assemblies/RJW_Menstruation.dll index 230f51d..2551e3a 100644 Binary files a/Assemblies/RJW_Menstruation.dll and b/Assemblies/RJW_Menstruation.dll differ diff --git a/Defs/DNADef/DNADefs.xml b/Defs/DNADef/DNADefs.xml index f4d4387..8439f3e 100644 --- a/Defs/DNADef/DNADefs.xml +++ b/Defs/DNADef/DNADefs.xml @@ -5,7 +5,7 @@ Fetus/Fetus_Default (255,255,255,255) - 0.2 + 0.2 diff --git a/changelogs.txt b/changelogs.txt index 6eae988..41d6d5e 100644 --- a/changelogs.txt +++ b/changelogs.txt @@ -2,6 +2,7 @@ Version 1.0.0.6 - if pawn is fertility stat is 0, stage is fixed at none. - added option for fetus information level. - depend on information level, pregnant stage display as luteal stage + - rewrote misspelled DNADef attribute Version 1.0.0.5 - womb cum capacity is affected by pawn's bodysize - changed cum volume calculate method. diff --git a/source/RJW_Menstruation/RJW_Menstruation/Cum.cs b/source/RJW_Menstruation/RJW_Menstruation/Cum.cs index 0dd131b..86f8d10 100644 --- a/source/RJW_Menstruation/RJW_Menstruation/Cum.cs +++ b/source/RJW_Menstruation/RJW_Menstruation/Cum.cs @@ -27,7 +27,7 @@ namespace RJW_Menstruation { get { - if (!notcum) return DNA.cumTickness; + if (!notcum) return DNA.cumThickness; else return notcumthickness; } set diff --git a/source/RJW_Menstruation/RJW_Menstruation/DNADef.cs b/source/RJW_Menstruation/RJW_Menstruation/DNADef.cs index 5f19368..2f71ff7 100644 --- a/source/RJW_Menstruation/RJW_Menstruation/DNADef.cs +++ b/source/RJW_Menstruation/RJW_Menstruation/DNADef.cs @@ -18,7 +18,7 @@ namespace RJW_Menstruation public string fetusTexPath; public ColorInt cumColor; public Color CumColor => cumColor.ToColor; - public float cumTickness = 0f; + public float cumThickness = 0f; } diff --git a/source/RJW_Menstruation/RJW_Menstruation/VariousDefOf.cs b/source/RJW_Menstruation/RJW_Menstruation/VariousDefOf.cs index c19e827..d44d8ac 100644 --- a/source/RJW_Menstruation/RJW_Menstruation/VariousDefOf.cs +++ b/source/RJW_Menstruation/RJW_Menstruation/VariousDefOf.cs @@ -15,7 +15,7 @@ namespace RJW_Menstruation { fetusTexPath = "Fetus/Fetus_Default", cumColor = new ColorInt(255, 255, 255, 255), - cumTickness = 0 + cumThickness = 0 }; public static readonly ThingDef CumFilth = DefDatabase.GetNamed("FilthCum");