1
0
mirror of https://github.com/anope/anope.git synced 2026-07-05 11:03:12 +02:00

InspIRCd: Log when server-side topiclocking is enabled in the config but the module is not loaded

This commit is contained in:
attilamolnar
2012-10-07 11:49:38 +02:00
parent 0a111c1976
commit 959a3f3cca
+2
View File
@@ -437,6 +437,8 @@ struct IRCDMessageCapab : IRCDMessage
Log() << "CHGHOST missing, Usage disabled until module is loaded.";
if (!has_chgidentmod)
Log() << "CHGIDENT missing, Usage disabled until module is loaded.";
if ((!has_svstopic_topiclock) && (Config->UseServerSideTopicLock))
Log() << "m_topiclock missing, server side topic locking disabled until module is loaded.";
}
return true;