diff options
author | Adam <Adam@anope.org> | 2010-11-22 10:08:37 -0600 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-12-12 19:36:01 -0500 |
commit | 697dc8938279f33f2ac2c0b2248793c75de07b19 (patch) | |
tree | 3b8259dbded67f87f9e17742ebef5b0043e3ebdc /src/nickalias.cpp | |
parent | 4d342d955dbe604357c652a1ee09d77c9a38ec6d (diff) |
Added a default expiry time for suspended and forbidden nicks and channels
Diffstat (limited to 'src/nickalias.cpp')
-rw-r--r-- | src/nickalias.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nickalias.cpp b/src/nickalias.cpp index a67893888..4f404b023 100644 --- a/src/nickalias.cpp +++ b/src/nickalias.cpp @@ -31,7 +31,7 @@ NickAlias::NickAlias(const Anope::string &nickname, NickCore *nickcore) else if (!nickcore) throw CoreException("Empty nickcore passed to NickAlias constructor"); - this->time_registered = this->last_seen = 0; + this->time_registered = this->last_seen = Anope::CurTime; this->nick = nickname; this->nc = nickcore; |