Have the first fertilized graphic go off of just the CycleFactor

This commit is contained in:
lutepickle 2022-06-03 07:57:48 -07:00
parent 7f84480bee
commit 9d83860d55
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -181,7 +181,7 @@ namespace RJW_Menstruation
int fertstage = comp.IsFertilized;
if (fertstage >= 0)
{
if (fertstage <= Math.Max(comp.CycleFactor, 24.0f)) return ContentFinder<Texture2D>.Get("Eggs/Egg_Fertilizing02", true);
if (fertstage <= comp.CycleFactor) return ContentFinder<Texture2D>.Get("Eggs/Egg_Fertilizing02", true);
if (fertstage <= 18) return ContentFinder<Texture2D>.Get("Eggs/Egg_Fertilized00", true);
else if (fertstage <= 54) return ContentFinder<Texture2D>.Get("Eggs/Egg_Fertilized01", true);
else return ContentFinder<Texture2D>.Get("Eggs/Egg_Fertilized02", true);