updates to g_bot.c

This commit is contained in:
Walter Julius Hennecke 2014-11-10 20:58:55 +01:00
parent 4f5afdb8f8
commit ed460d0bb1
1 changed files with 3 additions and 3 deletions

View File

@ -17,9 +17,9 @@ int32_t g_numArenas;
static char* g_arenaInfos[MAX_ARENAS]; static char* g_arenaInfos[MAX_ARENAS];
#define BOT_BEGIN_DELAY_BASE 2000 static const uint16_t BOT_BEGIN_DELAY_BASE = 2000;
#define BOT_BEGIN_DELAY_INCREMENT 2000 static const uint16_t BOT_BEGIN_DELAY_INCREMENT = 2000;
#define BOT_SPAWN_QUEUE_DEPTH 16 static const uint8_t BOT_SPAWN_QUEUE_DEPTH = 16;
typedef struct { typedef struct {
int32_t clientNum; int32_t clientNum;