Browse Source

Why not ¯\_(ツ)_/¯

pull/23/head
Gregory Rudolph 5 years ago
parent
commit
dc52c48d99
Signed by: rudi
GPG Key ID: EF64F3CBD1A1EBDD
  1. 23
      cmdShrug.go

23
cmdShrug.go

@ -0,0 +1,23 @@ @@ -0,0 +1,23 @@
// +ignore
// +build allcommands shrugcmd
package main
import "strings"
func init() {
command := Command{
Cmd: []string{"shrug", "shrg"},
Description: "$message - append a shrug ( ¯\\_(ツ)_/¯ )to your message",
Help: "",
Exec: cmdShrug,
}
RegisterCommand(command)
}
func cmdShrug(cmd []string) {
cmd = append(cmd, " ¯\\_(ツ)_/¯")
sendChat(strings.Join(cmd[1:], " "))
}
Loading…
Cancel
Save