diff --git a/About/About.xml b/About/About.xml
index a9702f55..7e8d6454 100644
--- a/About/About.xml
+++ b/About/About.xml
@@ -4,5 +4,13 @@
Killface
https://ludeon.com/forums/index.php?topic=20771.msg228259#msg228259
0.14.1241
- Adds new eyes to all colonists and individual beards to male colonists.
+ This mod aims to provide more visual individuality for your colonists.
+ - 8 newly defined skin colors instead of the vanilla 6.
+ - hair genetics according to real life. No more unrealistic hair colors.
+ - 27 different beards
+ - Added vanilla hair styles with 10 steps of hair loss.
+ - Hair is merged on the head graphic, thus visible with worn hats.
+ - Only gays have the possibility to chose the other sex's hair style
+ - Only white skinned people have cold preference, ahile only dark skinned like the heat.
+
\ No newline at end of file
diff --git a/About/PublishedFileId.txt b/About/PublishedFileId.txt
index 26b728bb..8e0ca56c 100644
--- a/About/PublishedFileId.txt
+++ b/About/PublishedFileId.txt
@@ -1 +1 @@
-726338068
\ No newline at end of file
+741852553
\ No newline at end of file
diff --git a/About/preview.png b/About/preview.png
index a1f011a2..4b590210 100644
Binary files a/About/preview.png and b/About/preview.png differ
diff --git a/Assemblies/RW_FacialStuff.dll b/Assemblies/RW_FacialStuff.dll
index b662778e..ad6ccd61 100644
Binary files a/Assemblies/RW_FacialStuff.dll and b/Assemblies/RW_FacialStuff.dll differ
diff --git a/Languages/English/Keyed/FacialStuff_Keyed.xml b/Languages/English/Keyed/FacialStuff_Keyed.xml
new file mode 100644
index 00000000..0018ea50
--- /dev/null
+++ b/Languages/English/Keyed/FacialStuff_Keyed.xml
@@ -0,0 +1,4 @@
+
+
+ Add mouths to colonists (requires reload)
+
\ No newline at end of file
diff --git a/Source/RW_FacialStuff/ModConfigMenu.cs b/Source/RW_FacialStuff/ModConfigMenu.cs
index d49f32a7..0a2a2c69 100644
--- a/Source/RW_FacialStuff/ModConfigMenu.cs
+++ b/Source/RW_FacialStuff/ModConfigMenu.cs
@@ -35,14 +35,13 @@ public override float DoWindowContents(Rect rect)
private void FillPageMain(Listing_Standard listing, float columnwidth, ref float curY)
{
- listing.ColumnWidth = columnwidth / 2;
-
- if (listing.ButtonText("RW_FacialStuff.Settings.RevertSettings".Translate()))
- {
- }
- listing.ColumnWidth = columnwidth;
+ // listing.ColumnWidth = columnwidth / 2;
+ //
+ // if (listing.ButtonText("RW_FacialStuff.Settings.RevertSettings".Translate()))
+ // {
+ // }
+ // listing.ColumnWidth = columnwidth;
listing.CheckboxLabeled("RW_FacialStuff.Settings.useMouth".Translate(), ref useMouth, null);
-
listing.Gap();
listing.End();
@@ -50,7 +49,8 @@ private void FillPageMain(Listing_Standard listing, float columnwidth, ref float
}
- public static bool useMouth= true;
+ public static bool useMouth = true;
+
public override void ExposeData()
{
Scribe_Values.LookValue(ref useMouth, "useMouth", false, false);