From c99335e34a46fa74ef996096581034489091b30e Mon Sep 17 00:00:00 2001 From: Fallen_Breath Date: Sat, 5 Mar 2022 14:49:45 +0800 Subject: [PATCH] fixed missing newline in !!help in discord bot resolves #21 --- chatbridge/impl/discord/helps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chatbridge/impl/discord/helps.py b/chatbridge/impl/discord/helps.py index 838fd40..2d895a9 100644 --- a/chatbridge/impl/discord/helps.py +++ b/chatbridge/impl/discord/helps.py @@ -4,7 +4,7 @@ '''.strip() # For chat channel, with full permission -CommandHelpMessageAll = CommandHelpMessage + ''' +CommandHelpMessageAll = CommandHelpMessage + '\n' + ''' `!!online`: Show player list in online proxy `!!qq `: Send message `` to QQ group '''.strip()