From 17288cf70c97ea48c310ab876ee44554c09e8fe0 Mon Sep 17 00:00:00 2001 From: Rory& Date: Wed, 23 Apr 2025 22:15:00 +0200 Subject: Update devtestbot to use bot utils --- Utilities/LibMatrix.DevTestBot/Bot/Commands/HelpCommand.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Utilities/LibMatrix.DevTestBot/Bot/Commands/HelpCommand.cs') diff --git a/Utilities/LibMatrix.DevTestBot/Bot/Commands/HelpCommand.cs b/Utilities/LibMatrix.DevTestBot/Bot/Commands/HelpCommand.cs index 7ecbeb3..33bbc5a 100644 --- a/Utilities/LibMatrix.DevTestBot/Bot/Commands/HelpCommand.cs +++ b/Utilities/LibMatrix.DevTestBot/Bot/Commands/HelpCommand.cs @@ -1,12 +1,14 @@ using System.Text; using LibMatrix.EventTypes.Spec; -using LibMatrix.ExampleBot.Bot.Interfaces; +using LibMatrix.Utilities.Bot.Interfaces; using Microsoft.Extensions.DependencyInjection; namespace LibMatrix.ExampleBot.Bot.Commands; public class HelpCommand(IServiceProvider services) : ICommand { public string Name { get; } = "help"; + public string[]? Aliases => []; + public bool Unlisted => false; public string Description { get; } = "Displays this help message"; public async Task Invoke(CommandContext ctx) { -- cgit 1.5.1