diff options
-rw-r--r-- | docs/conf/inspircd.conf.example | 2 | ||||
-rw-r--r-- | docs/conf/modules.conf.example | 6 | ||||
-rw-r--r-- | include/server.h | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/docs/conf/inspircd.conf.example b/docs/conf/inspircd.conf.example index dbd56d2fe..317fdb117 100644 --- a/docs/conf/inspircd.conf.example +++ b/docs/conf/inspircd.conf.example @@ -732,7 +732,7 @@ # Turning this option off will make the server spend more time on users we may # potentially not want. Normally this should be neglible, though. # Default value is true - clonesonconnect="true" + clonesonconnect="yes" # timeskipwarn: The time period that a server clock can jump by before # operators will be warned that the server is having performance issues. diff --git a/docs/conf/modules.conf.example b/docs/conf/modules.conf.example index 1b26182e4..8d1ee8074 100644 --- a/docs/conf/modules.conf.example +++ b/docs/conf/modules.conf.example @@ -1597,7 +1597,7 @@ # # # enableumode - If enabled, user mode +O is required for override. # # # -#<override noisy="yes" requirekey="no" enableumode="true"> +#<override noisy="yes" requirekey="no" enableumode="yes"> #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-# # Oper levels module: Gives each oper a level and prevents actions @@ -1693,7 +1693,7 @@ # 'saveperiod' determines how often to check if the database needs to be # saved to disk. Defaults to every five seconds. #<permchanneldb filename="permchannels.conf" -# listmodes="true" +# listmodes="yes" # saveperiod="5s"> #<include file="permchannels.conf"> # @@ -1804,7 +1804,7 @@ # nokicks (+Q) mode is set. Defaults to false. # protectedrank: Members having this rank or above may not be /REMOVE'd # by anyone. Set to 0 to disable this feature. Defaults to 50000. -#<remove supportnokicks="true" protectedrank="50000"> +#<remove supportnokicks="yes" protectedrank="50000"> #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-# # Repeat module: Allows to block, kick or ban upon similar messages diff --git a/include/server.h b/include/server.h index 51756b469..078f9662f 100644 --- a/include/server.h +++ b/include/server.h @@ -40,7 +40,7 @@ class CoreExport Server : public classbase */ bool uline; - /** True if this server is a silent uline, i.e. silent="true" in the uline block + /** True if this server is a silent uline, i.e. silent="yes" in the uline block */ bool silentuline; |