From 7cd0bbbcb970d715adff37368ea34260a66046d6 Mon Sep 17 00:00:00 2001 From: Bram Matthys Date: Sat, 8 Dec 2018 15:29:02 +0100 Subject: [PATCH] On second thought, for m_whox the priority is not important, so set it to zero (0). --- src/modules/m_whox.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/m_whox.c b/src/modules/m_whox.c index c1c7c148c..717f201eb 100644 --- a/src/modules/m_whox.c +++ b/src/modules/m_whox.c @@ -84,7 +84,7 @@ MOD_INIT(m_whox) MOD_LOAD(m_whox) { - CmdoverrideAddEx(modinfo->handle, "WHO", 9999999, override_who); + CmdoverrideAddEx(modinfo->handle, "WHO", 0, override_who); return MOD_SUCCESS; }