aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_botmode.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2024-11-05 20:41:10 +0000
committerGravatar Sadie Powell2024-11-05 20:41:10 +0000
commit1bd8c09194ffe002b5bdb3e622396513ecb98a89 (patch)
tree0b98fa9b0b79463e6adb0b8007e5eed50d85255f /src/modules/m_botmode.cpp
parentLLVM-GCC is long dead we don't need to mention it in the readme. (diff)
Avoid repeating the network name in whois.
Diffstat (limited to 'src/modules/m_botmode.cpp')
-rw-r--r--src/modules/m_botmode.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_botmode.cpp b/src/modules/m_botmode.cpp
index c2c1330ae..6db215886 100644
--- a/src/modules/m_botmode.cpp
+++ b/src/modules/m_botmode.cpp
@@ -112,7 +112,7 @@ public:
{
if (whois.GetTarget()->IsModeSet(bm))
{
- whois.SendLine(RPL_WHOISBOT, "is a bot on " + ServerInstance->Config->Network);
+ whois.SendLine(RPL_WHOISBOT, "is a bot");
}
}
};