From b2e6d09bbd18cdee1334d30a8234654b9e5eee34 Mon Sep 17 00:00:00 2001 From: Kyle Fuller Date: Wed, 24 Aug 2011 23:37:23 +0100 Subject: [PATCH] Perform is now a network module, but could also be loaded as a user module if the user desires perfom --- modules/perform.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/perform.cpp b/modules/perform.cpp index e1ce0bf2..9af1df93 100644 --- a/modules/perform.cpp +++ b/modules/perform.cpp @@ -167,7 +167,8 @@ private: }; template<> void TModInfo(CModInfo& Info) { + Info.AddType(CModInfo::UserModule); Info.SetWikiPage("perform"); } -MODULEDEFS(CPerform, "Keeps a list of commands to be executed when ZNC connects to IRC.") +NETWORKMODULEDEFS(CPerform, "Keeps a list of commands to be executed when ZNC connects to IRC.")