summaryrefslogtreecommitdiff
path: root/modules/protocol/unreal.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/protocol/unreal.cpp')
-rw-r--r--modules/protocol/unreal.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/protocol/unreal.cpp b/modules/protocol/unreal.cpp
index 08fe8d237..a14091c96 100644
--- a/modules/protocol/unreal.cpp
+++ b/modules/protocol/unreal.cpp
@@ -345,7 +345,7 @@ class UnrealIRCdProto : public IRCDProto
if (Servers::Capab.count("ESVID") > 0)
IRCD->SendMode(NickServ, u, "+d %s", u->Account()->display.c_str());
else
- IRCD->SendMode(NickServ, u, "+d %d", u->timestamp);
+ IRCD->SendMode(NickServ, u, "+d %d", u->signon);
}
void SendLogout(User *u) anope_override
@@ -809,7 +809,7 @@ struct IRCDMessageNick : IRCDMessage
;
else if (params[6].is_pos_number_only())
{
- if (convertTo<time_t>(params[6]) == user->timestamp)
+ if (convertTo<time_t>(params[6]) == user->signon)
na = NickAlias::Find(user->nick);
}
else