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(); }