aboutsummaryrefslogtreecommitdiffstats
path: root/include/clientprotocol.h
diff options
context:
space:
mode:
authorGravatar Sadie Powell2023-02-27 20:19:57 +0000
committerGravatar Sadie Powell2023-02-27 20:29:56 +0000
commitd141f9c02500c1401acd0e1817727346c56a512a (patch)
tree380e5ce4d3ba8b393370224afe87460edbb64bed /include/clientprotocol.h
parentUse 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.h4
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)
{
}