diff --git a/GeneralMods/HappyBirthday/HappyBirthday.cs b/GeneralMods/HappyBirthday/HappyBirthday.cs index a9afc6ca..30c172ad 100644 --- a/GeneralMods/HappyBirthday/HappyBirthday.cs +++ b/GeneralMods/HappyBirthday/HappyBirthday.cs @@ -551,7 +551,6 @@ namespace Omegasis.HappyBirthday MultiplayerSupport.SendBirthdayInfoToOtherPlayers(); } - this.eventManager.addEvent(BirthdayEvents.CommunityCenterJunimoBirthday()); if (Game1.player.mailReceived.Contains("birthdayMom")) { Game1.player.mailReceived.Remove("birthdayMom"); @@ -564,6 +563,14 @@ namespace Omegasis.HappyBirthday { Game1.player.mailReceived.Remove("birthdayJunimos"); } + + + EventHelper communityCenterJunimoBirthday = BirthdayEvents.CommunityCenterJunimoBirthday(); + this.eventManager.addEvent(communityCenterJunimoBirthday); + if (Game1.player.eventsSeen.Contains(communityCenterJunimoBirthday.getEventID())) + { + Game1.player.eventsSeen.Remove(communityCenterJunimoBirthday.getEventID()); //Repeat the event. + } } /// Raised before the game begins writes data to the save file (except the initial save creation).