diff options
| author | Adelyn Breedlove <[email protected]> | 2019-01-19 15:58:31 -0700 |
|---|---|---|
| committer | Adelyn Breedlove <[email protected]> | 2019-01-19 15:58:31 -0700 |
| commit | b678d7312518bb0ff74d7db364bcbbcded5c1609 (patch) | |
| tree | 39094fc179c33fc67269ffc3fea218384c558cfe /bin/bot.ml | |
| parent | update docs export (diff) | |
| download | disml-b678d7312518bb0ff74d7db364bcbbcded5c1609.tar.xz disml-b678d7312518bb0ff74d7db364bcbbcded5c1609.zip | |
more updates
Diffstat (limited to 'bin/bot.ml')
| -rw-r--r-- | bin/bot.ml | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -29,6 +29,9 @@ let check_command (msg:Message.t) = |> List.fold ~init:0 ~f:(+) |> Int.to_string in Message.reply msg list >>> ignore + | "!embed" -> + let embed = { Embed.default with description = Some "Hello World!" } in + Message.reply_with ~embed msg >>> ignore | _ -> () let main () = |