diff --git a/modules/keepnick.cpp b/modules/keepnick.cpp index b20d82fb..77ada191 100644 --- a/modules/keepnick.cpp +++ b/modules/keepnick.cpp @@ -195,6 +195,7 @@ void CKeepNickTimer::RunJob() { template<> void TModInfo(CModInfo& Info) { Info.SetWikiPage("keepnick"); + Info.AddType(CModInfo::UserModule); } NETWORKMODULEDEFS(CKeepNickMod, "Keep trying for your primary nick") diff --git a/modules/simple_away.cpp b/modules/simple_away.cpp index d7485541..62f9376e 100644 --- a/modules/simple_away.cpp +++ b/modules/simple_away.cpp @@ -219,6 +219,7 @@ template<> void TModInfo(CModInfo& Info) { Info.SetWikiPage("simple_away"); Info.SetHasArgs(true); Info.SetArgsHelpText("You might enter up to 3 arguments, like -notimer awaymessage or -timer 5 awaymessage."); + Info.AddType(CModInfo::UserModule); } NETWORKMODULEDEFS(CSimpleAway, "This module will automatically set you away on IRC while you are disconnected from the bouncer.")