diff options
| author | Adelyn Breelove <[email protected]> | 2019-01-23 11:49:14 -0700 |
|---|---|---|
| committer | Adelyn Breelove <[email protected]> | 2019-01-23 11:49:14 -0700 |
| commit | 1824a5954347f8bd76c3736a13f86119bc2ef2a2 (patch) | |
| tree | 96073ced2ac72eec5db4e3ad978646d5edb94229 /lib/event.ml | |
| parent | correct an event naming typo (diff) | |
| download | disml-1824a5954347f8bd76c3736a13f86119bc2ef2a2.tar.xz disml-1824a5954347f8bd76c3736a13f86119bc2ef2a2.zip | |
changes for consistency
Diffstat (limited to 'lib/event.ml')
| -rw-r--r-- | lib/event.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/event.ml b/lib/event.ml index fb84c73..3255470 100644 --- a/lib/event.ml +++ b/lib/event.ml @@ -103,7 +103,7 @@ let dispatch ev = match ev with | MESSAGE_CREATE d -> !Dispatch.message_create d | MESSAGE_UPDATE d -> !Dispatch.message_update d | MESSAGE_DELETE (d,e) -> !Dispatch.message_delete d e - | MESSAGE_DELETE_BULK d -> !Dispatch.message_bulk_delete d + | MESSAGE_DELETE_BULK d -> !Dispatch.message_delete_bulk d | MESSAGE_REACTION_ADD d -> !Dispatch.reaction_add d | MESSAGE_REACTION_REMOVE d -> !Dispatch.reaction_remove d | MESSAGE_REACTION_REMOVE_ALL d -> !Dispatch.reaction_bulk_remove d |