コード例 #1
0
        /// <summary>
        /// Add junimos for extra bundles to the CC completion goodbye dance.
        /// </summary>
        public static void StartGoodbyeDance_Prefix(
            CommunityCenter __instance)
        {
            Bundles.SetUpJunimosForGoodbyeDance(cc: __instance);
            List <Junimo> junimos = __instance.getCharacters().OfType <Junimo>().ToList();

            foreach (Junimo junimo in junimos)
            {
                junimo.sayGoodbye();
            }
        }