diff options
author | attilamolnar <attilamolnar@hush.com> | 2012-07-04 19:18:38 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2012-07-04 19:20:22 +0200 |
commit | c3261196c2d129ec749cee8e27ad75a526d0087f (patch) | |
tree | eed1dc75e7f483e4b1de6613224f7bb9ac3c7666 /src/modules | |
parent | edd159566de1cdae6f39302961a10e1800b0ff2c (diff) |
m_delaymsg Don't bother with remote users
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_delaymsg.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_delaymsg.cpp b/src/modules/m_delaymsg.cpp index cc09629e3..1a0734ed9 100644 --- a/src/modules/m_delaymsg.cpp +++ b/src/modules/m_delaymsg.cpp @@ -96,7 +96,7 @@ Version ModuleDelayMsg::GetVersion() void ModuleDelayMsg::OnUserJoin(Membership* memb, bool sync, bool created, CUList&) { - if (memb->chan->IsModeSet('d')) + if ((IS_LOCAL(memb->user)) && (memb->chan->IsModeSet('d'))) { djm.jointime.set(memb, ServerInstance->Time()); } @@ -105,7 +105,7 @@ void ModuleDelayMsg::OnUserJoin(Membership* memb, bool sync, bool created, CULis ModResult ModuleDelayMsg::OnUserPreMessage(User* user, void* dest, int target_type, std::string &text, char status, CUList &exempt_list) { /* Server origin */ - if (!user) + if ((!user) || (!IS_LOCAL(user))) return MOD_RES_PASSTHRU; if (target_type != TYPE_CHANNEL) |