Fix #7151: Hang when concurrently starting AIs in multiplayer, or with shift pressed.

This commit is contained in:
Peter Nelson
2019-02-04 17:19:21 +00:00
committed by Niels Martin Hansen
parent 64878320cc
commit b1e40b6b56
3 changed files with 8 additions and 3 deletions

View File

@@ -395,6 +395,7 @@ enum CommandFlags {
CMD_CLIENT_ID = 0x080, ///< set p2 with the ClientID of the sending client.
CMD_DEITY = 0x100, ///< the command may be executed by COMPANY_DEITY
CMD_STR_CTRL = 0x200, ///< the command's string may contain control strings
CMD_NO_EST = 0x400, ///< the command is never estimated.
};
DECLARE_ENUM_AS_BIT_SET(CommandFlags)