diff options
author | Rory& <root@rory.gay> | 2024-03-17 13:30:38 +0100 |
---|---|---|
committer | Rory& <root@rory.gay> | 2024-03-17 13:30:38 +0100 |
commit | 677fe757733ab4af327ba74d047195be7d578e60 (patch) | |
tree | e4502c0ce8e021e0533f84706568669b36bbe0da /Utilities/LibMatrix.Utilities.Bot/Services | |
parent | Add AddCollapsiblePart to MessageBuilder (diff) | |
download | LibMatrix-677fe757733ab4af327ba74d047195be7d578e60.tar.xz |
Bot related fixes, image size
Diffstat (limited to '')
-rw-r--r-- | Utilities/LibMatrix.Utilities.Bot/Services/CommandListenerHostedService.cs | 14 |
1 files changed, 8 insertions, 6 deletions
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, |