diff options
| author | 2007-06-14 17:03:16 +0000 | |
|---|---|---|
| committer | 2007-06-14 17:03:16 +0000 | |
| commit | 18e822f8bb02f66b64e1d3f183d4779a745f8eca (patch) | |
| tree | c160795e35e14527c82291e48ca9c9ee0f495296 /src/cmd_kline.cpp | |
| parent | Fix problem where two unrelated options are named identically, thanks for rem... (diff) | |
Fix for bug #324 reported by HiroP
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7303 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/cmd_kline.cpp')
| -rw-r--r-- | src/cmd_kline.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cmd_kline.cpp b/src/cmd_kline.cpp index eab027b70..90ddca55c 100644 --- a/src/cmd_kline.cpp +++ b/src/cmd_kline.cpp @@ -64,6 +64,10 @@ CmdResult cmd_kline::Handle (const char** parameters, int pcnt, userrec *user) ServerInstance->XLines->apply_lines(to_apply); } + else + { + user->WriteServ("NOTICE %s :*** K-Line for %s already exists",user->nick,parameters[0]); + } } else { |
