summaryrefslogtreecommitdiff
path: root/src/modules/m_helpop.cpp
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2015-04-28 15:02:41 +0200
committerAttila Molnar <attilamolnar@hush.com>2015-04-28 15:02:41 +0200
commit04eb0e182dec8518d1dfd15a09b8054d1501a4ef (patch)
treea09b319fffd5dd01a8ba88cddc8c8e3629472b3a /src/modules/m_helpop.cpp
parent39cafd84080182a381319927ed07f5db1ac8d928 (diff)
Prepend target user nick to whois numerics in InspIRCd::SendWhoisLine()
Diffstat (limited to 'src/modules/m_helpop.cpp')
-rw-r--r--src/modules/m_helpop.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_helpop.cpp b/src/modules/m_helpop.cpp
index 2fe958a71..4c0af15af 100644
--- a/src/modules/m_helpop.cpp
+++ b/src/modules/m_helpop.cpp
@@ -143,7 +143,7 @@ class ModuleHelpop : public Module
{
if (dst->IsModeSet(ho))
{
- ServerInstance->SendWhoisLine(src, dst, 310, dst->nick+" :is available for help.");
+ ServerInstance->SendWhoisLine(src, dst, 310, ":is available for help.");
}
}