Exemplo n.º 1
0
        public static void Announce(RoleType role)
        {
            string name = role.ToCassie();

            if (string.IsNullOrEmpty(name))
            {
                return;
            }
            if (!string.IsNullOrEmpty(Announcement) && Announcement != "none")
            {
                Map.Announce($"{Announcement.Replace("%role%", name)}", false, true);
            }
        }