Remove unused Egg() constructor

This commit is contained in:
lutepickle 2022-07-07 07:58:05 -07:00
parent 805b7afa81
commit 9c9e120b92
1 changed files with 2 additions and 9 deletions

View File

@ -1874,15 +1874,7 @@ namespace RJW_Menstruation
public int lifespanhrs;
public Pawn fertilizer;
public int position;
public int fertstage = 0;
public Egg()
{
fertilized = false;
lifespanhrs = (int)(96 * Configurations.EggLifespanMultiplier);
fertilizer = null;
position = 0;
}
public int fertstage;
public Egg(int lifespanhrs)
{
@ -1890,6 +1882,7 @@ namespace RJW_Menstruation
this.lifespanhrs = (int)(lifespanhrs * Configurations.EggLifespanMultiplier);
fertilizer = null;
position = 0;
fertstage = 0;
}
public void ExposeData()