diff options
| author | 2007-01-27 16:19:06 +0000 | |
|---|---|---|
| committer | 2007-01-27 16:19:06 +0000 | |
| commit | 279e9acfaca41fe03e9d835a559e79844baadf3c (patch) | |
| tree | 3438904d7c4d876ab6881a7dec62d84e46b6f195 /src/modules/m_botmode.cpp | |
| parent | Correctly allow all supporting versions of PostgreSQL to use secure string es... (diff) | |
fix so that OnWhois is triggered for remote whois, and remove smelly bold chars from m_botmode's numeric output.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6444 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_botmode.cpp')
| -rw-r--r-- | src/modules/m_botmode.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_botmode.cpp b/src/modules/m_botmode.cpp index 9ed7ef2ee..2f9a3fafd 100644 --- a/src/modules/m_botmode.cpp +++ b/src/modules/m_botmode.cpp @@ -89,7 +89,7 @@ class ModuleBotMode : public Module { if (dst->IsModeSet('B')) { - ServerInstance->SendWhoisLine(src, dst, 335, std::string(src->nick)+" "+std::string(dst->nick)+" :is a \2bot\2 on "+ServerInstance->Config->Network); + ServerInstance->SendWhoisLine(src, dst, 335, std::string(src->nick)+" "+std::string(dst->nick)+" :is a bot on "+ServerInstance->Config->Network); } } |
