mirror of
https://gitgud.io/lutepickle/rjw_menstruation.git
synced 2024-08-14 22:46:52 +00:00
Don't show the ovulation chance on non-humans
This commit is contained in:
parent
3646f1135b
commit
2798d923b1
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue