mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-04-20 00:43:36 +03:00
this is horribly wrong
Signed-off-by: Macintosh II <95250141+mctaylors@users.noreply.github.com>
This commit is contained in:
parent
6fcfd67fe0
commit
6c6b46cb57
1 changed files with 15 additions and 15 deletions
|
@ -8,22 +8,22 @@ namespace Octobot.Services.Update;
|
||||||
|
|
||||||
public sealed class SongUpdateService : BackgroundService
|
public sealed class SongUpdateService : BackgroundService
|
||||||
{
|
{
|
||||||
private static readonly (string Name, string Author, TimeSpan Duration)[] SongList =
|
private static readonly (string Author, string Name, TimeSpan Duration)[] SongList =
|
||||||
{
|
{
|
||||||
("Rockagilly Blues", "Yoko & the Gold Bazookas", new TimeSpan(0, 3, 37)),
|
("Yoko & the Gold Bazookas", "Rockagilly Blues", new TimeSpan(0, 3, 37)),
|
||||||
("Seep and Destroy", "Splatoon 3", new TimeSpan(0, 2, 42)),
|
("Splatoon 3", "Seep and Destroy", new TimeSpan(0, 2, 42)),
|
||||||
("Big Betrayal", "Deep Cut", new TimeSpan(0, 1, 42)),
|
("Deep Cut", "Big Betrayal", new TimeSpan(0, 1, 42)),
|
||||||
("Tomorrow's Nostalgia Today", "Squid Sisters", new TimeSpan(0, 2, 8)),
|
("Squid Sisters", "Tomorrow's Nostalgia Today", new TimeSpan(0, 2, 8)),
|
||||||
("Anarchy Rainbow", "Deep Cut", new TimeSpan(0, 1, 51)),
|
("Deep Cut", "Anarchy Rainbow", new TimeSpan(0, 1, 51)),
|
||||||
("Liquid Sunshine", "Squid Sisters feat. Ian BGM", new TimeSpan(0, 1, 32)),
|
("Squid Sisters feat. Ian BGM", "Liquid Sunshine", new TimeSpan(0, 1, 32)),
|
||||||
("Candy-Coated Rocks", "Damp Socks feat. Off the Hook", new TimeSpan(0, 1, 11)),
|
("Damp Socks feat. Off the Hook", "Candy-Coated Rocks", new TimeSpan(0, 1, 11)),
|
||||||
("Aquasonic", "H2Whoa", new TimeSpan(0, 1, 1)),
|
("H2Whoa", "Aquasonic", new TimeSpan(0, 1, 1)),
|
||||||
("Ska-BLAM", "Yoko & the Gold Bazookas", new TimeSpan(0, 4, 4)),
|
("Yoko & the Gold Bazookas", "Ska-BLAM", new TimeSpan(0, 4, 4)),
|
||||||
("Muck Warfare", "Off the Hook", new TimeSpan(0, 3, 39)),
|
("Off the Hook", "Muck Warfare", new TimeSpan(0, 3, 39)),
|
||||||
("Acid Hues", "Off the Hook", new TimeSpan(0, 3, 39)),
|
("Off the Hook", "Acid Hues", new TimeSpan(0, 3, 39)),
|
||||||
("Shark Bytes", "Off the Hook", new TimeSpan(0, 3, 48)),
|
("Off the Hook", "Shark Bytes", new TimeSpan(0, 3, 48)),
|
||||||
("Calamari Inkantation 3MIX", "DJ Octavio feat. Squid Sisters & Deep Cut", new TimeSpan(0, 7, 9)),
|
("DJ Octavio feat. Squid Sisters & Deep Cut", "Calamari Inkantation 3MIX", new TimeSpan(0, 7, 9)),
|
||||||
("Ink Me Up", "Squid Sisters", new TimeSpan(0, 2, 13))
|
("Squid Sisters", "Ink Me Up", new TimeSpan(0, 2, 13))
|
||||||
};
|
};
|
||||||
|
|
||||||
private readonly List<Activity> _activityList = new(1)
|
private readonly List<Activity> _activityList = new(1)
|
||||||
|
|
Loading…
Add table
Reference in a new issue