From fcd0f5f35807231044c74daee39d295ae55752d1 Mon Sep 17 00:00:00 2001 From: cloudwalk Date: Sun, 14 Jun 2020 13:15:38 +0000 Subject: [PATCH] Correct the value of CMD_SHARED. Fixes map command ...and other CMD_SHARED commands. Updated the bitmasks but forgot to update the value of CMD_SHARED to reflect the change. The client can only see CMD_CLIENT commands. It was only adding to CMD_SERVER. Oops. git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@12669 d7cf8633-e32d-0410-b094-e92efae38249 --- cmd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd.h b/cmd.h index 6c12c626..9b0046b0 100644 --- a/cmd.h +++ b/cmd.h @@ -50,7 +50,7 @@ struct cmd_state_s; #define CMD_CHEAT (1<<6) -#define CMD_SHARED 6 +#define CMD_SHARED 3 typedef void(*xcommand_t) (struct cmd_state_s *cmd); -- 2.39.2