private static void GameLoop_DayStarted(object sender, DayStartedEventArgs e)
 {
     if (Bundles.IsCommunityCentreCompleteEarly(Bundles.CC))
     {
         // Add mail on Community Centre completion for Saloon delivery service surcharge fee waived
         if (!Game1.player.hasOrWillReceiveMail(GusDeliveryService.MailSaloonDeliverySurchargeWaived))
         {
             Game1.addMail(GusDeliveryService.MailSaloonDeliverySurchargeWaived);
         }
     }
 }
Beispiel #2
0
 public bool IsCommunityCentreCompleteEarly()
 {
     return(Bundles.IsCommunityCentreCompleteEarly(Bundles.CC));
 }