From 1cad8f1308e4af86027f9ae25523b8a8b3f6592c Mon Sep 17 00:00:00 2001 From: "info@mode42.com" Date: Sun, 9 Aug 2026 05:27:00 +0000 Subject: Next development steps --- src/core/command.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/core/command.c') diff --git a/src/core/command.c b/src/core/command.c index b60ee35..8cd4e5c 100644 --- a/src/core/command.c +++ b/src/core/command.c @@ -18,6 +18,7 @@ #include "hybbx/password.h" #include "hybbx/traffic.h" #include "hybbx/monitor.h" +#include "hybbx/chess.h" #include "hybbx/util.h" #include @@ -2311,6 +2312,11 @@ hybbx_result_t hybbx_command_dispatch(hybbx_service_t *service, return cmd_monitor(service, session, cmd); } + if (str_ieq(cmd->verb, "chess") || str_ieq(cmd->verb, "play")) { + return cmd_chess(service, session, cmd); + } + + if (str_ieq(cmd->verb, "users")) { return cmd_users(service, session); } -- cgit v1.3.1