From 677fe757733ab4af327ba74d047195be7d578e60 Mon Sep 17 00:00:00 2001 From: Rory& Date: Sun, 17 Mar 2024 13:30:38 +0100 Subject: Bot related fixes, image size --- .../Services/CommandListenerHostedService.cs | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'Utilities/LibMatrix.Utilities.Bot/Services/CommandListenerHostedService.cs') diff --git a/Utilities/LibMatrix.Utilities.Bot/Services/CommandListenerHostedService.cs b/Utilities/LibMatrix.Utilities.Bot/Services/CommandListenerHostedService.cs index 1f91268..fdf919b 100644 --- a/Utilities/LibMatrix.Utilities.Bot/Services/CommandListenerHostedService.cs +++ b/Utilities/LibMatrix.Utilities.Bot/Services/CommandListenerHostedService.cs @@ -112,19 +112,21 @@ public class CommandListenerHostedService : IHostedService { var message = evt.TypedContent as RoomMessageEventContent; var room = _hs.GetRoom(evt.RoomId!); - var ctx = new CommandContext { - Room = room, - MessageEvent = @evt, - Homeserver = _hs - }; var commandWithoutPrefix = message.BodyWithoutReplyFallback[usedPrefix.Length..]; var command = _commands.OrderByDescending(x => x.Name.Length).FirstOrDefault(x => commandWithoutPrefix.StartsWith(x.Name)); if (commandWithoutPrefix.Length != command.Name.Length && commandWithoutPrefix[command.Name.Length] != ' ') command = null; + var ctx = new CommandContext { + Room = room, + MessageEvent = @evt, + Homeserver = _hs, + Args = commandWithoutPrefix.Split(' ').Length == 1 ? [] : commandWithoutPrefix.Split(' ')[1..], + CommandName = commandWithoutPrefix.Split(' ')[0] + }; if (command == null) { await room.SendMessageEventAsync( - new RoomMessageEventContent("m.notice", $"Command \"{commandWithoutPrefix.Split(' ')[0]}\" not found!")); + new RoomMessageEventContent("m.notice", $"Command \"{ctx.CommandName}\" not found!")); return new() { Success = false, Result = CommandResult.CommandResultType.Failure_InvalidCommand, -- cgit 1.4.1