diff --git a/chat/command.go b/chat/command.go index 5d00a87..0570215 100644 --- a/chat/command.go +++ b/chat/command.go @@ -275,6 +275,20 @@ func InitCommands(c *Commands) { }, }) + c.Add(Command{ + Prefix: "/shrug", + Handler: func(room *Room, msg message.CommandMsg) error { + var me string + args := msg.Args() + if len(args) == 0 { + me = `¯\_(ツ)_/¯` + } + + room.Send(message.NewEmoteMsg(me, msg.From())) + return nil + }, + }) + c.Add(Command{ Prefix: "/timestamp", Help: "Timestamps after 30min of inactivity.",