From e9b76ccfec15ecab21c10f5a0133528526e856f7 Mon Sep 17 00:00:00 2001 From: Pascal Abresch Date: Tue, 19 Mar 2019 15:58:57 +0100 Subject: adds /msetstate --- ui/command-processor.go | 2 ++ ui/commands.go | 9 +++++++++ 2 files changed, 11 insertions(+) (limited to 'ui') diff --git a/ui/command-processor.go b/ui/command-processor.go index dffd7e9..b18f950 100644 --- a/ui/command-processor.go +++ b/ui/command-processor.go @@ -80,6 +80,7 @@ func NewCommandProcessor(parent *MainView) *CommandProcessor { "send": {"sendevent"}, "msend": {"msendevent"}, "state": {"setstate"}, + "mstate":{"msetstate"}, "rb": {"rainbow"}, }, commands: map[string]CommandHandler{ @@ -95,6 +96,7 @@ func NewCommandProcessor(parent *MainView) *CommandProcessor { "sendevent": cmdSendEvent, "msendevent": cmdMSendEvent, "setstate": cmdSetState, + "msetstate": cmdMSetState, "rainbow": cmdRainbow, }, } diff --git a/ui/commands.go b/ui/commands.go index 39b1a46..7175a21 100644 --- a/ui/commands.go +++ b/ui/commands.go @@ -167,6 +167,15 @@ func cmdSendEvent(cmd *Command) { } } +func cmdMSetState(cmd *Command) { + if len(cmd.Args) < 2 { + cmd.Reply("Usage: /msetstate ") + return + } + cmd.Args = append([]string{cmd.Room.MxRoom().ID},cmd.Args...) + cmdSetState(cmd) +} + func cmdSetState(cmd *Command) { if len(cmd.Args) < 4 { cmd.Reply("Usage: /setstate ") -- cgit v1.2.3