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)