From 576f8d4689e2768c97b58c64af8cb6eb4b2e64fc Mon Sep 17 00:00:00 2001 From: J-P Nurmi Date: Sun, 12 Oct 2014 00:06:12 +0200 Subject: [PATCH] fix #690: make autoattach a network module --- modules/autoattach.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/autoattach.cpp b/modules/autoattach.cpp index 1e5c3d92..003fa823 100644 --- a/modules/autoattach.cpp +++ b/modules/autoattach.cpp @@ -281,9 +281,10 @@ private: }; template<> void TModInfo(CModInfo& Info) { + Info.AddType(CModInfo::UserModule); Info.SetWikiPage("autoattach"); Info.SetHasArgs(true); Info.SetArgsHelpText("List of channel masks and channel masks with ! before them."); } -USERMODULEDEFS(CChanAttach, "Reattaches you to channels on activity.") +NETWORKMODULEDEFS(CChanAttach, "Reattaches you to channels on activity.")