Don't show the ovulation chance on non-humans

This commit is contained in:
lutepickle 2023-03-10 09:04:00 -08:00
parent 3646f1135b
commit 2798d923b1

View file

@ -452,7 +452,7 @@ namespace RJW_Menstruation
FillableBarLabeled(lineRect, " " + xxx.CountOfBirthEgg.LabelCap.CapitalizeFirst() + " " + statvalue, statvalue / 100, TextureCache.RecoverTexture, Texture2D.blackTexture, xxx.CountOfBirthEgg.description);
lineRect.y += height * 3;
if (ModsConfig.BiotechActive)
if (ModsConfig.BiotechActive && xxx.is_human(pawn))
{
statvalue = comp.OvulationChance;
FillableBarLabeled(lineRect, " " + Translations.OvulationChanceLabel(statvalue.ToStringPercent()), statvalue, TextureCache.LutealTexture, Texture2D.blackTexture, Translations.OvulationChanceDesc);