diff options
Diffstat (limited to 'modules/m_pong.c')
-rw-r--r-- | modules/m_pong.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/m_pong.c b/modules/m_pong.c index c12a0a6..6d472f7 100644 --- a/modules/m_pong.c +++ b/modules/m_pong.c @@ -58,7 +58,7 @@ ms_pong(struct Client *client_p, struct Client *source_p, * That being the case, we will route, but only for registered clients (a * case can be made to allow them only from servers). -Shadowfax */ - if (!EmptyString(destination) && !match(destination, me.name) && + if (!EmptyString(destination) && match(destination, me.name) && irccmp(destination, me.id)) { if ((target_p = hash_find_client(destination)) || |