From 1cfc0cd9f2fb774d6dca574a717083c819df3c2e Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Fri, 16 Sep 2016 14:07:54 -0500 Subject: [PATCH] extensions/chantype_dummy: cleanups --- extensions/chantype_dummy.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/extensions/chantype_dummy.c b/extensions/chantype_dummy.c index b3c28470..23e8d72a 100644 --- a/extensions/chantype_dummy.c +++ b/extensions/chantype_dummy.c @@ -4,6 +4,7 @@ #include "modules.h" #include "client.h" #include "ircd.h" +#include "supported.h" static const char chantype_desc[] = "Secondary global channel type (^)"; @@ -16,6 +17,7 @@ static int _modinit(void) { CharAttrs['^'] |= CHANPFX_C; + chantypes_update(); return 0; } @@ -24,4 +26,5 @@ static void _moddeinit(void) { CharAttrs['^'] &= ~CHANPFX_C; + chantypes_update(); }