summaryrefslogtreecommitdiff
path: root/modules/commands/cs_ban.cpp
diff options
context:
space:
mode:
authorRobby <robby@chat.be>2012-01-07 04:10:30 -0500
committerAdam <Adam@anope.org>2012-01-07 04:10:30 -0500
commit9e713941277e8d745b1713a6500349a9d1ecb8e3 (patch)
tree8f6d8a8553316799154884f61573036c97ca0fff /modules/commands/cs_ban.cpp
parentdd64eac782b3ee5acc6d1068a0ef42142a035254 (diff)
Cleaned up a lot of log messages, help replies, fixed cs_tban, and other small fixes
Diffstat (limited to 'modules/commands/cs_ban.cpp')
-rw-r--r--modules/commands/cs_ban.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/commands/cs_ban.cpp b/modules/commands/cs_ban.cpp
index 992ba9233..e0c5dd95e 100644
--- a/modules/commands/cs_ban.cpp
+++ b/modules/commands/cs_ban.cpp
@@ -19,8 +19,8 @@ class CommandCSBan : public Command
CommandCSBan(Module *creator) : Command(creator, "chanserv/ban", 2, 3)
{
this->SetDesc(_("Bans a selected nick on a channel"));
- this->SetSyntax(_("\037#channel\037 \037nick\037 [\037reason\037]"));
- this->SetSyntax(_("\037#channel\037 \037mask\037 [\037reason\037]"));
+ this->SetSyntax(_("\037channel\037 \037nick\037 [\037reason\037]"));
+ this->SetSyntax(_("\037channel\037 \037mask\037 [\037reason\037]"));
}
void Execute(CommandSource &source, const std::vector<Anope::string> &params)
@@ -127,7 +127,7 @@ class CommandCSBan : public Command
source.Reply(" ");
source.Reply(_("Bans a selected nick on a channel.\n"
" \n"
- "By default, limited to AOPs or those with level 5 access \n"
+ "By default, limited to AOPs or those with level 5 access\n"
"and above on the channel. Channel founders may ban masks."));
return true;
}