Skip to content

Commit 41d1728

Browse files
committed
Switches CDN domain.
1 parent 2b10766 commit 41d1728

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Runner.Discord/Responders/MarioResponder.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ public sealed class MarioResponder : IResponder
1212
{
1313
private readonly IReadOnlyList<Uri> _library = new[]
1414
{
15-
new Uri("https://alan.gdn/3eb70cea-8059-4797-b1aa-734a29e6779b.jpg"), // Seth Rogan
16-
new Uri("https://alan.gdn/eb05b40e-6d98-418e-96a2-de2b69d2be24.jpg"), // Chris Pratt
17-
new Uri("https://alan.gdn/65391db7-2c91-4c32-8b53-6610dddc5685.jpg") // Jack Black
15+
new Uri("https://s.alanedwardes.com/3eb70cea-8059-4797-b1aa-734a29e6779b.jpg"), // Seth Rogan
16+
new Uri("https://s.alanedwardes.com/eb05b40e-6d98-418e-96a2-de2b69d2be24.jpg"), // Chris Pratt
17+
new Uri("https://s.alanedwardes.com/65391db7-2c91-4c32-8b53-6610dddc5685.jpg") // Jack Black
1818
};
1919

2020
public async Task ProcessMessage(IMessage message, CancellationToken token)

src/Runner.Discord/Responders/SpammerResponder.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public async Task ProcessMessage(IMessage message, CancellationToken token)
3737
// If this author posted a link in 3 different channels in the last 20 minutes
3838
if (potentialSpamMessages.Select(x => x.Channel.Id).Distinct().Count() >= 3)
3939
{
40-
await _discordSocketClient.GetChannelByName("moderators").SendMessageAsync($"HELP! I think <@{message.Author.Id}> is Spamming !! Lots of love xx https://alan.gdn/3eb70cea-8059-4797-b1aa-734a29e6779b.jpg");
40+
await _discordSocketClient.GetChannelByName("moderators").SendMessageAsync($"HELP! I think <@{message.Author.Id}> is Spamming !! Lots of love xx https://s.alanedwardes.com/3eb70cea-8059-4797-b1aa-734a29e6779b.jpg");
4141
}
4242
}
4343

0 commit comments

Comments
 (0)