mirror of
https://github.com/anope/anope.git
synced 2026-06-29 05:06:38 +02:00
Added ns_set_misc and cs_set_misc.
These modules allows users to configure settable options in /ns and /cs set that will be displayed in /ns and /cs info. Removed os_info, cs_set_url, ns_set_url, cs_set_email, ns_set_icq
This commit is contained in:
+1
-5
@@ -9,9 +9,8 @@ NickCore::NickCore(const std::string &coredisplay)
|
||||
if (coredisplay.empty())
|
||||
throw CoreException("Empty display passed to NickCore constructor");
|
||||
|
||||
display = email = greet = url = NULL;
|
||||
display = email = greet = NULL;
|
||||
ot = NULL;
|
||||
icq = 0;
|
||||
language = channelcount = 0;
|
||||
lastmail = 0;
|
||||
|
||||
@@ -63,9 +62,6 @@ NickCore::~NickCore()
|
||||
delete [] this->email;
|
||||
if (this->greet)
|
||||
delete [] this->greet;
|
||||
if (this->url)
|
||||
delete [] this->url;
|
||||
|
||||
if (!this->memos.memos.empty())
|
||||
{
|
||||
for (unsigned i = 0, end = this->memos.memos.size(); i < end; ++i)
|
||||
|
||||
Reference in New Issue
Block a user