diff options
| author | Adelyn Breelove <[email protected]> | 2019-01-28 09:48:49 -0700 |
|---|---|---|
| committer | Adelyn Breelove <[email protected]> | 2019-01-28 09:48:49 -0700 |
| commit | f43c41dcf56a30f3fac0de07349b2c505203c380 (patch) | |
| tree | 2d2e228a2dd1cd489927cfec547494a433bded42 /lib/s.ml | |
| parent | Fix Message.t.mentions (diff) | |
| download | disml-f43c41dcf56a30f3fac0de07349b2c505203c380.tar.xz disml-f43c41dcf56a30f3fac0de07349b2c505203c380.zip | |
Add more docs
Diffstat (limited to 'lib/s.ml')
| -rw-r--r-- | lib/s.ml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,7 +22,7 @@ module type ChannelImpl = sig let check_command (msg : Message.t) = if String.is_prefix ~prefix:"!hello" msg.content then let embed = Embed.(default |> title "Hello World!") in - Channel.send_message ~embed msg.channel >>> ignore + Channel_id.send_message ~embed msg.channel_id >>> ignore Client.message_create := check_command ]} |