summaryrefslogtreecommitdiff
path: root/modules/commands/cs_ban.cpp
diff options
context:
space:
mode:
authorAdam <adam@sigterm.info>2013-02-02 10:51:08 -0800
committerAdam <adam@sigterm.info>2013-02-02 10:51:08 -0800
commit8902c1f03881b7053a2b6b526e23d89054824d2c (patch)
tree46b48dadef226a981f39eca567b0cb57ca8f6321 /modules/commands/cs_ban.cpp
parentdccb0ee3138359559d3a984d4708b53154aa7082 (diff)
parent6c43bcc3e0a474319b4b5ecf53d01eb9c84cce79 (diff)
Merge pull request #8 from Robby-/1.9
Some more typo and help text fixes, missing privileges, settings corrections, and cs_enforce changes
Diffstat (limited to 'modules/commands/cs_ban.cpp')
-rw-r--r--modules/commands/cs_ban.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/commands/cs_ban.cpp b/modules/commands/cs_ban.cpp
index 2ec40582d..2da17bb98 100644
--- a/modules/commands/cs_ban.cpp
+++ b/modules/commands/cs_ban.cpp
@@ -119,7 +119,7 @@ class CommandCSBan : public Command
if (ban_time)
{
new TempBan(ban_time, c, mask);
- source.Reply(_("Ban on \2%s\2 expires in %s."), mask.c_str(), Anope::Duration(ban_time, source.GetAccount()).c_str());
+ source.Reply(_("Ban on \002%s\002 expires in %s."), mask.c_str(), Anope::Duration(ban_time, source.GetAccount()).c_str());
}
}
@@ -143,7 +143,7 @@ class CommandCSBan : public Command
if (ban_time)
{
new TempBan(ban_time, c, target);
- source.Reply(_("Ban on \2%s\2 expires in %s."), target.c_str(), Anope::Duration(ban_time, source.GetAccount()).c_str());
+ source.Reply(_("Ban on \002%s\002 expires in %s."), target.c_str(), Anope::Duration(ban_time, source.GetAccount()).c_str());
}
}