mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 02:59:01 -04:00
Change the default for <waitpong:sendsnotice> to false.
This message exists for an incredibly rare issue and just confuses the vast majority of people.
This commit is contained in:
parent
df2a3d6fc4
commit
694c121908
@ -617,7 +617,7 @@
|
||||
# killonbadreply - Whether to kill the user if they send the wrong #
|
||||
# PONG reply. #
|
||||
# #
|
||||
#<waitpong sendsnotice="yes" killonbadreply="yes">
|
||||
#<waitpong sendsnotice="no" killonbadreply="yes">
|
||||
|
||||
#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
|
||||
# Channel cycle module: Adds the /CYCLE command which is a server-side
|
||||
|
@ -39,7 +39,7 @@ class ModuleWaitPong : public Module
|
||||
void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
|
||||
{
|
||||
ConfigTag* tag = ServerInstance->Config->ConfValue("waitpong");
|
||||
sendsnotice = tag->getBool("sendsnotice", true);
|
||||
sendsnotice = tag->getBool("sendsnotice", false);
|
||||
killonbadreply = tag->getBool("killonbadreply", true);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user