about summary refs log tree commit diff
path: root/src/game
diff options
context:
space:
mode:
Diffstat (limited to 'src/game')
-rw-r--r--src/game/g_variables.h2
-rw-r--r--src/game/server/gs_server.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/game/g_variables.h b/src/game/g_variables.h
index c08bd10d..02ad4fbc 100644
--- a/src/game/g_variables.h
+++ b/src/game/g_variables.h
@@ -28,7 +28,7 @@ MACRO_CONFIG_INT(player_color_body, 65408, 0, 0)
 MACRO_CONFIG_INT(player_color_feet, 65408, 0, 0)
 MACRO_CONFIG_STR(player_skin, 64, "default")
 
-MACRO_CONFIG_INT(dbg_bots, 0, 0, 11)
+MACRO_CONFIG_INT(dbg_dummies, 0, 0, 11)
 MACRO_CONFIG_INT(dbg_firedelay, 0, 0, 1)
 MACRO_CONFIG_INT(dbg_flow, 0, 0, 1)
 MACRO_CONFIG_INT(dbg_tuning, 0, 0, 1)
diff --git a/src/game/server/gs_server.cpp b/src/game/server/gs_server.cpp
index 22962470..bebce635 100644
--- a/src/game/server/gs_server.cpp
+++ b/src/game/server/gs_server.cpp
@@ -2314,9 +2314,9 @@ void mods_init()
 
 	world->insert_entity(gameobj);
 
-	if(config.dbg_bots)
+	if(config.dbg_dummies)
 	{
-		for(int i = 0; i < config.dbg_bots ; i++)
+		for(int i = 0; i < config.dbg_dummies ; i++)
 		{
 			mods_connected(MAX_CLIENTS-i-1);
 			mods_client_enter(MAX_CLIENTS-i-1);