diff options
| author | 2023-02-27 20:19:57 +0000 | |
|---|---|---|
| committer | 2023-02-27 20:29:56 +0000 | |
| commit | d141f9c02500c1401acd0e1817727346c56a512a (patch) | |
| tree | 380e5ce4d3ba8b393370224afe87460edbb64bed /include/clientprotocol.h | |
| parent | Use the stats row count instead of counting opers manually. (diff) | |
Make module classes specify their priority manually.
Diffstat (limited to 'include/clientprotocol.h')
| -rw-r--r-- | include/clientprotocol.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clientprotocol.h b/include/clientprotocol.h index 3a1da079c..917636718 100644 --- a/include/clientprotocol.h +++ b/include/clientprotocol.h @@ -551,8 +551,8 @@ public: /** Constructor. * @param mod Module owning the provider. */ - MessageTagProvider(Module* mod) - : Events::ModuleEventListener(mod, "event/messagetag") + MessageTagProvider(Module* mod, unsigned int eventprio = DefaultPriority) + : Events::ModuleEventListener(mod, "event/messagetag", eventprio) { } |
