| 885 | } |
| 886 | |
| 887 | static bool ConStatus(std::span<std::string_view> argv) |
| 888 | { |
| 889 | if (argv.empty()) { |
| 890 | IConsolePrint(CC_HELP, "List the status of all clients connected to the server. Usage 'status'."); |
| 891 | return true; |
| 892 | } |
| 893 | |
| 894 | NetworkServerShowStatusToConsole(); |
| 895 | return true; |
| 896 | } |
| 897 | |
| 898 | static bool ConServerInfo(std::span<std::string_view> argv) |
| 899 | { |
nothing calls this directly
no test coverage detected