summaryrefslogtreecommitdiff
path: root/modules/commands
diff options
context:
space:
mode:
authorRobby <robby@chatbelgie.be>2015-09-18 05:25:20 +0200
committerRobby <robby@chatbelgie.be>2015-09-18 05:25:20 +0200
commit96d77971349e231c0147e155a331499e160746b3 (patch)
treeac3c8f3999638e9b0a85a49d73136364d1e8eb28 /modules/commands
parent9810da9829e03aa7501b2afe183ff25da83679e8 (diff)
Bold code 2 -> 002.
Diffstat (limited to 'modules/commands')
-rw-r--r--modules/commands/bs_bot.cpp4
-rw-r--r--modules/commands/ns_identify.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/modules/commands/bs_bot.cpp b/modules/commands/bs_bot.cpp
index fc5f84863..017509f26 100644
--- a/modules/commands/bs_bot.cpp
+++ b/modules/commands/bs_bot.cpp
@@ -78,7 +78,7 @@ class CommandBSBot : public Command
User *u = User::Find(nick, true);
if (u)
{
- source.Reply(_("Nick \2%s\2 is currently in use."), u->nick.c_str());
+ source.Reply(_("Nick \002%s\002 is currently in use."), u->nick.c_str());
return;
}
@@ -178,7 +178,7 @@ class CommandBSBot : public Command
if (User::Find(nick, true))
{
- source.Reply(_("Nick \2%s\2 is currently in use."), nick.c_str());
+ source.Reply(_("Nick \002%s\002 is currently in use."), nick.c_str());
return;
}
}
diff --git a/modules/commands/ns_identify.cpp b/modules/commands/ns_identify.cpp
index c2b8d1479..bd06f88d0 100644
--- a/modules/commands/ns_identify.cpp
+++ b/modules/commands/ns_identify.cpp
@@ -91,7 +91,7 @@ class CommandNSIdentify : public Command
unsigned int maxlogins = Config->GetModule(this->owner)->Get<unsigned int>("maxlogins");
if (na && maxlogins && na->nc->users.size() >= maxlogins)
{
- source.Reply(_("Account \2%s\2 has already reached the maximum number of simultaneous logins (%u)."), na->nc->display.c_str(), maxlogins);
+ source.Reply(_("Account \002%s\002 has already reached the maximum number of simultaneous logins (%u)."), na->nc->display.c_str(), maxlogins);
return;
}