diff --git a/main.go b/main.go index 9befad9..92fc23d 100644 --- a/main.go +++ b/main.go @@ -38,9 +38,14 @@ func main() { registerCommand(Command{Trigger: "^[^`]*([()|DoO];|;[()|DoOpP]|:wink:)[^`]*$", Output: "<@%s> Oboe!", DeleteInput: true, OutputIsReply: true, Type: CommandTypeRegex}) // Misc commands - registerCommand(Command{Trigger: "o/", Output: "\\o", Type: CommandTypeFullMatch}) + registerCommand(Command{Trigger: "o/", Output: "\\o", Type: CommandTypeFullMatch, Cooldown: 5}) registerCommand(Command{Trigger: "\\o", Output: "o/", Type: CommandTypeFullMatch}) registerCommand(Command{Trigger: "<:selphyDango:441001954542616576>", Output: ":notes: Dango, Dango, Dango, Dango, Dango Daikazoku :notes:", Type: CommandTypeFullMatch}) + registerCommand(Command{Trigger: "praise the sun", Output: "If only I could be so grossly incandescent \\\\[T]/", Type: CommandTypeContains, IgnoreCase: true}) + + registerCommand(Command{Trigger: "echo", Type: CommandTypePrefix, Function: echoMessage}) + + registerCommand(Command{Trigger: "!welcome", OutputEmbed: getWelcomeEmbed(), Type: CommandTypeFullMatch, DMOnly: true})