summaryrefslogtreecommitdiff
path: root/modules/botserv/bs_bot.cpp
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2025-04-16 00:04:30 +0100
committerSadie Powell <sadie@witchery.services>2025-04-16 00:04:30 +0100
commitce362854a39c35249f8d2c7bcf27e3d5f9aa9980 (patch)
tree6d4012d9579c2d56055d621768122cf5f3b658ba /modules/botserv/bs_bot.cpp
parenta883b616a1360ba74254661cbd39280404d1753a (diff)
Update as many messages as possible for automatic line wrapping.
Diffstat (limited to 'modules/botserv/bs_bot.cpp')
-rw-r--r--modules/botserv/bs_bot.cpp36
1 files changed, 19 insertions, 17 deletions
diff --git a/modules/botserv/bs_bot.cpp b/modules/botserv/bs_bot.cpp
index 829b8ec9d..cd39f73b0 100644
--- a/modules/botserv/bs_bot.cpp
+++ b/modules/botserv/bs_bot.cpp
@@ -347,23 +347,25 @@ public:
{
this->SendSyntax(source);
source.Reply(" ");
- source.Reply(_("Allows Services Operators to create, modify, and delete\n"
- "bots that users will be able to use on their own\n"
- "channels.\n"
- " \n"
- "\002BOT ADD\002 adds a bot with the given nickname, username,\n"
- "hostname and realname. Since no integrity checks are done\n"
- "for these settings, be really careful.\n"
- " \n"
- "\002BOT CHANGE\002 allows you to change the nickname, username, hostname\n"
- "or realname of a bot without deleting it (and\n"
- "all the data associated with it).\n"
- " \n"
- "\002BOT DEL\002 removes the given bot from the bot list.\n"
- " \n"
- "\002Note\002: You cannot create a bot with a nick that is\n"
- "currently registered. If an unregistered user is currently\n"
- "using the nick, they will be killed."));
+ source.Reply(_(
+ "Allows Services Operators to create, modify, and delete "
+ "bots that users will be able to use on their own "
+ "channels."
+ "\n\n"
+ "\002BOT\032ADD\002 adds a bot with the given nickname, username, "
+ "hostname and realname. Since no integrity checks are done "
+ "for these settings, be really careful."
+ "\n\n"
+ "\002BOT\032CHANGE\002 allows you to change the nickname, username, hostname "
+ "or realname of a bot without deleting it (and "
+ "all the data associated with it)."
+ "\n\n"
+ "\002BOT\032DEL\002 removes the given bot from the bot list."
+ "\n\n"
+ "\002Note\002: You cannot create a bot with a nick that is "
+ "currently registered. If an unregistered user is currently "
+ "using the nick, they will be killed."
+ ));
return true;
}
};