From 78be38d802255854f6166fbb801105655650fd38 Mon Sep 17 00:00:00 2001 From: Kyle Fuller Date: Sun, 21 Apr 2013 12:31:30 +0100 Subject: [PATCH] Allow block_motd to be loaded per-network and globally Closes #326 --- modules/block_motd.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/block_motd.cpp b/modules/block_motd.cpp index f06116e7..fddbd52f 100644 --- a/modules/block_motd.cpp +++ b/modules/block_motd.cpp @@ -31,6 +31,8 @@ public: }; template<> void TModInfo(CModInfo& Info) { + Info.AddType(CModInfo::NetworkModule); + Info.AddType(CModInfo::GlobalModule); Info.SetWikiPage("block_motd"); }