From 15b37c1e38b20a3f6244af179dfdb395ee929800 Mon Sep 17 00:00:00 2001 From: Robby- Date: Sat, 2 Feb 2013 07:30:53 +0100 Subject: Some more typo and help text fixes, proper formatting of control codes, missing privileges, and settings corrections. --- modules/commands/cs_ban.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/commands/cs_ban.cpp') 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()); } } -- cgit