diff options
| author | 2008-02-10 14:28:01 +0000 | |
|---|---|---|
| committer | 2008-02-10 14:28:01 +0000 | |
| commit | 59643d29385fd4fbfed7a5720e90e2c9ffd1fd21 (patch) | |
| tree | a3b8358420121d1713d3db7f24eaf16107f44087 /src/commands/cmd_eline.cpp | |
| parent | Per-logstream loglevels. (diff) | |
Correctly rewrite bans in 1.2 also, and make zline on nicks actually work.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8873 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/commands/cmd_eline.cpp')
| -rw-r--r-- | src/commands/cmd_eline.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/commands/cmd_eline.cpp b/src/commands/cmd_eline.cpp index 2fdb29679..ca95955b7 100644 --- a/src/commands/cmd_eline.cpp +++ b/src/commands/cmd_eline.cpp @@ -32,6 +32,8 @@ CmdResult CommandEline::Handle (const char** parameters, int pcnt, User *user) { ih.first = "*"; ih.second = find->GetIPString(); + std::string c = std::string("*@") + find->GetIPString(); + parameters[0] = c.c_str(); } else ih = ServerInstance->XLines->IdentSplit(parameters[0]); |
