From 82d9728b5d2f963e15f49c3b16477cc2d2469dcb Mon Sep 17 00:00:00 2001 From: Shikhir Arora Date: Tue, 7 Nov 2017 10:18:36 -0500 Subject: [PATCH] Temporary fix for GIF cache --- NadekoBot.Core/Modules/Games/PlantAndPickCommands.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NadekoBot.Core/Modules/Games/PlantAndPickCommands.cs b/NadekoBot.Core/Modules/Games/PlantAndPickCommands.cs index e726cad3..8eefd2c1 100644 --- a/NadekoBot.Core/Modules/Games/PlantAndPickCommands.cs +++ b/NadekoBot.Core/Modules/Games/PlantAndPickCommands.cs @@ -1,4 +1,4 @@ -using Discord; +using Discord; using Discord.Commands; using Microsoft.EntityFrameworkCore; using NadekoBot.Extensions; @@ -91,7 +91,7 @@ namespace NadekoBot.Modules.Games using (var toSend = imgData.ToStream()) { - msg = await Context.Channel.SendFileAsync(toSend, "plant.png", msgToSend, options: new RequestOptions() + msg = await Context.Channel.SendFileAsync(toSend, "plant.gif", msgToSend, options: new RequestOptions() { RetryMode = RetryMode.AlwaysRetry }).ConfigureAwait(false);