From: cloudwalk Date: Sun, 14 Jun 2020 13:15:38 +0000 (+0000) Subject: Correct the value of CMD_SHARED. Fixes map command X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=fcd0f5f35807231044c74daee39d295ae55752d1;p=xonotic%2Fdarkplaces.git 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 --- 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);