mirror of
https://gitgud.io/lutepickle/rjw_menstruation.git
synced 2024-08-14 22:46:52 +00:00
Revert "Remove unused Egg() constructor"
Rimworld might be using it after all
This reverts commit 9c9e120b92
.
This commit is contained in:
parent
258f68a88d
commit
16bb69372c
1 changed files with 9 additions and 2 deletions
|
@ -1817,7 +1817,15 @@ namespace RJW_Menstruation
|
|||
public int lifespanhrs;
|
||||
public Pawn fertilizer;
|
||||
public int position;
|
||||
public int fertstage;
|
||||
public int fertstage = 0;
|
||||
|
||||
public Egg()
|
||||
{
|
||||
fertilized = false;
|
||||
lifespanhrs = (int)(96 * Configurations.EggLifespanMultiplier);
|
||||
fertilizer = null;
|
||||
position = 0;
|
||||
}
|
||||
|
||||
public Egg(int lifespanhrs)
|
||||
{
|
||||
|
@ -1825,7 +1833,6 @@ namespace RJW_Menstruation
|
|||
this.lifespanhrs = (int)(lifespanhrs * Configurations.EggLifespanMultiplier);
|
||||
fertilizer = null;
|
||||
position = 0;
|
||||
fertstage = 0;
|
||||
}
|
||||
|
||||
public void ExposeData()
|
||||
|
|
Loading…
Reference in a new issue