From f43a7c9277f626b2c404cc38f9e851b9397bfd7a Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Wed, 13 Jul 2022 23:36:16 -0700 Subject: [PATCH] fix extra char in li output on proxy server --- src/ChatCommands.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ChatCommands.cc b/src/ChatCommands.cc index d2f866fc..9032ef8e 100644 --- a/src/ChatCommands.cc +++ b/src/ChatCommands.cc @@ -155,7 +155,7 @@ static void proxy_command_lobby_info(shared_ptr, } if (session.override_section_id >= 0) { - msg += "\n$C7SecID override: $C6%s"; + msg += "\n$C7SecID override: $C6"; msg += name_for_section_id(session.override_section_id); }