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

Replaced globalnick and globaldescription with just nick and description, since it's in its own block now

This commit is contained in:
Adam
2010-10-02 16:11:58 -04:00
parent 8a0cf62d70
commit 3499edc427
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -1504,13 +1504,13 @@ global
/*
* The nickname of the Global client.
*/
globalnick = "Global"
nick = "Global"
/*
* The description of the Global client, which will be used as the GECOS (real
* name) of the client.
*/
globaldescription = "Global Noticer"
description = "Global Noticer"
}
/*
+2 -2
View File
@@ -1177,8 +1177,8 @@ void ServerConfig::Read()
{"operserv", "sessionautokillexpiry", "0", new ValueContainerTime(&this->SessionAutoKillExpiry), DT_TIME, NoValidation},
{"operserv", "addakiller", "no", new ValueContainerBool(&this->AddAkiller), DT_BOOLEAN, NoValidation},
{"operserv", "opersonly", "no", new ValueContainerBool(&this->OSOpersOnly), DT_BOOLEAN, NoValidation},
{"global", "globalnick", "", new ValueContainerString(&this->s_GlobalNoticer), DT_STRING | DT_NORELOAD, NoValidation},
{"global", "globaldescription", "Global Noticer", new ValueContainerString(&this->desc_GlobalNoticer), DT_STRING | DT_NORELOAD, ValidateGlobal},
{"global", "nick", "", new ValueContainerString(&this->s_GlobalNoticer), DT_STRING | DT_NORELOAD, NoValidation},
{"global", "description", "Global Noticer", new ValueContainerString(&this->desc_GlobalNoticer), DT_STRING | DT_NORELOAD, ValidateGlobal},
{"defcon", "defaultlevel", "0", new ValueContainerInt(&DefConLevel), DT_INTEGER, ValidateDefCon},
{"defcon", "level4", "", new ValueContainerString(&DefCon4), DT_STRING, ValidateDefCon},
{"defcon", "level3", "", new ValueContainerString(&DefCon3), DT_STRING, ValidateDefCon},