diff options
| author | 2012-07-24 14:54:29 +0200 | |
|---|---|---|
| committer | 2012-10-12 03:57:39 +0200 | |
| commit | c8b41aa5d256d99eee67ec94492a94dc30e0ea35 (patch) | |
| tree | 251cb805f1fe25423ca245b4a9b6d5db67451fe8 /src/modules/m_sakick.cpp | |
| parent | Fix unregistered users getting global notices, also fix certain commands work... (diff) | |
| download | inspircd++-c8b41aa5d256d99eee67ec94492a94dc30e0ea35.tar.gz inspircd++-c8b41aa5d256d99eee67ec94492a94dc30e0ea35.tar.bz2 inspircd++-c8b41aa5d256d99eee67ec94492a94dc30e0ea35.zip | |
Remove superfluous std::string()s
Diffstat (limited to 'src/modules/m_sakick.cpp')
| -rw-r--r-- | src/modules/m_sakick.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_sakick.cpp b/src/modules/m_sakick.cpp index 2cb1f2a04..3926a18e6 100644 --- a/src/modules/m_sakick.cpp +++ b/src/modules/m_sakick.cpp @@ -76,7 +76,7 @@ class CommandSakick : public Command if (IS_LOCAL(user)) { /* Locally issued command; send the snomasks */ - ServerInstance->SNO->WriteGlobalSno('a', std::string(user->nick) + " SAKICKed " + dest->nick + " on " + parameters[0]); + ServerInstance->SNO->WriteGlobalSno('a', user->nick + " SAKICKed " + dest->nick + " on " + parameters[0]); } return CMD_SUCCESS; |
