From 33b034b27ea8281bd67a6e54cc5c91f409909e3d Mon Sep 17 00:00:00 2001 From: Master Kwoth Date: Sun, 26 Nov 2017 10:11:41 +0700 Subject: [PATCH] .liqu will work if you specify only ordering, too --- NadekoBot.Core/Modules/Utility/QuoteCommands.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/NadekoBot.Core/Modules/Utility/QuoteCommands.cs b/NadekoBot.Core/Modules/Utility/QuoteCommands.cs index 76dabc9f..de259911 100644 --- a/NadekoBot.Core/Modules/Utility/QuoteCommands.cs +++ b/NadekoBot.Core/Modules/Utility/QuoteCommands.cs @@ -24,6 +24,11 @@ namespace NadekoBot.Modules.Utility _db = db; } + [NadekoCommand, Usage, Description, Aliases] + [RequireContext(ContextType.Guild)] + public Task ListQuotes(OrderType order = OrderType.Keyword) + => ListQuotes(order: order); + [NadekoCommand, Usage, Description, Aliases] [RequireContext(ContextType.Guild)] public async Task ListQuotes(int page = 1, OrderType order = OrderType.Keyword)