From fbc0eaeaa1969847e18be8e7d9dc1189b1c0033e Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Fri, 30 Sep 2022 00:15:26 -0700 Subject: [PATCH] add SL flag in $li command output --- src/ChatCommands.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/ChatCommands.cc b/src/ChatCommands.cc index 62fdc5f3..6e2f447d 100644 --- a/src/ChatCommands.cc +++ b/src/ChatCommands.cc @@ -148,6 +148,9 @@ static void proxy_command_lobby_info(shared_ptr, if (session.save_files) { behaviors_tokens.emplace_back("SAVE"); } + if (session.suppress_remote_login) { + behaviors_tokens.emplace_back("SL"); + } if (session.function_call_return_value >= 0) { behaviors_tokens.emplace_back("BFC"); }