Exemple #1
0
 /// <summary>
 /// Adds the parent seed to all crops
 /// </summary>
 public static void LinkCropParents()
 {
     foreach (KeyValuePair <string, Crop> entry in _cropDic)
     {
         entry.Value.ParentSeed = Seeds.GetStandardSeed(entry.Key);
     }
 }