internal static void DayStartedBehaviours(CommunityCenter cc) { // Load in new community centre area-bundle data if ready if (Bundles.IsAbandonedJojaMartBundleAvailableOrComplete()) { Log.D("Community centre and abandoned joja-mart complete, doing nothing.", ModEntry.Config.DebugMode); } else if (Bundles.IsCommunityCentreDefinitelyComplete(cc)) { Log.D("Community centre complete, unloading any bundle data.", ModEntry.Config.DebugMode); BundleManager.Save(cc); } else { Log.D("Community centre incomplete, loading bundle data.", ModEntry.Config.DebugMode); BundleManager.Load(cc); } }