From 857047c77cf7a25ce0b0a6584940d6ff8bc53c6a Mon Sep 17 00:00:00 2001 From: Octol1ttle Date: Tue, 25 Oct 2022 22:57:25 +0500 Subject: [PATCH] Update the song list Candy-Coated Rocks is the best tho --- Boyfriend/Boyfriend.cs | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/Boyfriend/Boyfriend.cs b/Boyfriend/Boyfriend.cs index 4528e32..d757ccc 100644 --- a/Boyfriend/Boyfriend.cs +++ b/Boyfriend/Boyfriend.cs @@ -20,9 +20,13 @@ public static class Boyfriend { }; private static readonly List> ActivityList = new() { - Tuple.Create(new Game("C418 - Mall", ActivityType.Listening), new TimeSpan(0, 3, 18)), - Tuple.Create(new Game("C418 - Thirteen", ActivityType.Listening), new TimeSpan(0, 2, 57)), - Tuple.Create(new Game("Spotify Ads", ActivityType.Listening), new TimeSpan(0, 0, 15)) + Tuple.Create(new Game("UNDEAD CORPORATION - Everything will freeze", ActivityType.Listening), + new TimeSpan(0, 3, 18)), + Tuple.Create(new Game("Xi - Blue Zenith", ActivityType.Listening), new TimeSpan(0, 4, 16)), + Tuple.Create(new Game("Kurokotei - Scattered Faith", ActivityType.Listening), new TimeSpan(0, 8, 21)), + Tuple.Create(new Game("Splatoon 3 - Candy-Coated Rocks", ActivityType.Listening), new TimeSpan(0, 2, 39)), + Tuple.Create(new Game("RetroSpecter - Genocide", ActivityType.Listening), new TimeSpan(0, 5, 52)), + Tuple.Create(new Game("Dimrain47 - At the Speed of Light", ActivityType.Listening), new TimeSpan(0, 4, 10)) }; public static readonly DiscordSocketClient Client = new(Config); @@ -135,6 +139,7 @@ public static class Boyfriend { return removedRoles; } + public static SocketGuild FindGuild(ulong channel) { if (GuildCache.TryGetValue(channel, out var gld)) return gld; foreach (var guild in Client.Guilds) {