Show bleeding in the womb icon for climacteric

This commit is contained in:
lutepickle 2022-09-06 18:44:19 -07:00
parent 3a7cda2d10
commit c974de4875
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ namespace RJW_Menstruation
if (wombtex != null) return wombtex; if (wombtex != null) return wombtex;
string icon = comp.WombTex; string icon = comp.WombTex;
HediffComp_Menstruation.Stage stage = comp.curStage; HediffComp_Menstruation.Stage stage = comp.curStage;
if (stage == HediffComp_Menstruation.Stage.Bleeding) icon += "_Bleeding"; if (stage == HediffComp_Menstruation.Stage.Bleeding || stage == HediffComp_Menstruation.Stage.ClimactericBleeding) icon += "_Bleeding";
wombtex = ContentFinder<Texture2D>.Get(icon, true); wombtex = ContentFinder<Texture2D>.Get(icon, true);