aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_conn_join.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2021-11-05 04:24:14 +0000
committerGravatar Sadie Powell2021-11-05 04:24:14 +0000
commit0f2257136d71389c274f0ab6dd68db3239da1d71 (patch)
tree255c6a21653ca3b7806983ec9f7796e50b243f19 /src/modules/m_conn_join.cpp
parentMerge branch 'insp3' into master. (diff)
Remove unused time_t field from the timer system.
This is equivalent to calling InspIRCd::Now() and is only actually used in one place in modules.
Diffstat (limited to 'src/modules/m_conn_join.cpp')
-rw-r--r--src/modules/m_conn_join.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_conn_join.cpp b/src/modules/m_conn_join.cpp
index b6d4e68a7..01fbb2257 100644
--- a/src/modules/m_conn_join.cpp
+++ b/src/modules/m_conn_join.cpp
@@ -55,7 +55,7 @@ class JoinTimer final
ServerInstance->Timers.AddTimer(this);
}
- bool Tick(time_t time) override
+ bool Tick() override
{
if (user->chans.empty())
JoinChannels(user, channels);