diff options
Diffstat (limited to 'modules/protocol/plexus.cpp')
-rw-r--r-- | modules/protocol/plexus.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/protocol/plexus.cpp b/modules/protocol/plexus.cpp index 948a715ac..432cc3c02 100644 --- a/modules/protocol/plexus.cpp +++ b/modules/protocol/plexus.cpp @@ -358,7 +358,7 @@ struct IRCDMessageMode : IRCDMessage { // 0 = channel, 1 = ts, 2 = modes Channel *c = findchan(params[0]); - time_t ts = Anope::CurTime; + time_t ts = 0; try { ts = convertTo<time_t>(params[1]); @@ -567,7 +567,7 @@ struct IRCDMessageTMode : IRCDMessage bool Run(MessageSource &source, const std::vector<Anope::string> ¶ms) anope_override { - time_t ts = Anope::CurTime; + time_t ts = 0; try { ts = convertTo<time_t>(params[0]); |