From 108dbb9cc697630bc5902b77bf8e257a9f18675c Mon Sep 17 00:00:00 2001 From: Ske Date: Fri, 23 Oct 2020 12:20:53 +0200 Subject: [PATCH] Actually set the proper command message retention >.> --- PluralKit.Bot/Services/CommandMessageService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Bot/Services/CommandMessageService.cs b/PluralKit.Bot/Services/CommandMessageService.cs index 5ed33c4c..8d44b97d 100644 --- a/PluralKit.Bot/Services/CommandMessageService.cs +++ b/PluralKit.Bot/Services/CommandMessageService.cs @@ -10,7 +10,7 @@ namespace PluralKit.Bot { public class CommandMessageService { - private static readonly Duration CommandMessageRetention = Duration.FromSeconds(2); + private static readonly Duration CommandMessageRetention = Duration.FromHours(2); private readonly IDatabase _db; private readonly ModelRepository _repo;