diff --git a/chat/command.go b/chat/command.go index 0570215..aeca5af 100644 --- a/chat/command.go +++ b/chat/command.go @@ -278,13 +278,7 @@ 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())) + room.Send(message.NewEmoteMsg(`¯\_(ツ)_/¯`, msg.From())) return nil }, })