1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-10 19:43:13 +02:00

Integrate iConf.network in iConf itself as the distinction between

these "network settings" and other settings has been lost in time.

Rename some of these variables and macro's.
ircnetwork -> NETWORK_NAME
ircnet005 -> NETWORK_NAME_005
defserv ->? DEFAULT_SERVER
hidden_host -> CLOAK_PREFIX
helpchan -> HELP_CHANNEL

Also one config change (visible to admins):
set::hiddenhost-prefix is now set::cloak-prefix
We still accept the old name, though.
The example conf has been updated as well, but not the wiki yet.
This commit is contained in:
Bram Matthys
2021-08-10 14:22:42 +02:00
parent a4d9ef3947
commit 2c011202a4
14 changed files with 64 additions and 64 deletions
+1 -1
View File
@@ -70,7 +70,7 @@ MOD_UNLOAD()
int bot_whois(Client *requester, Client *acptr)
{
if (IsBot(acptr))
sendnumeric(requester, RPL_WHOISBOT, acptr->name, ircnetwork);
sendnumeric(requester, RPL_WHOISBOT, acptr->name, NETWORK_NAME);
return 0;
}