From 168e334abd1e293491f502302a6b51faf338f438 Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Sun, 28 Jul 2013 06:05:22 -0700 Subject: [PATCH] Added BE_RAIDER pref to player setup and adjusted vox min player counts away from local testing values. --- code/game/gamemodes/heist/heist.dm | 10 +++++----- code/modules/client/preferences.dm | 1 + 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/code/game/gamemodes/heist/heist.dm b/code/game/gamemodes/heist/heist.dm index d3a2ce69d3..c4e7813cf9 100644 --- a/code/game/gamemodes/heist/heist.dm +++ b/code/game/gamemodes/heist/heist.dm @@ -13,10 +13,10 @@ var/global/vox_kills = 0 //Used to check the Inviolate. /datum/game_mode/heist name = "heist" config_tag = "heist" - required_players = 1 - required_players_secret = 1 - required_enemies = 1 - recommended_enemies = 1 + required_players = 15 + required_players_secret = 25 + required_enemies = 4 + recommended_enemies = 6 var/const/waittime_l = 600 //lower bound on time before intercept arrives (in tenths of seconds) var/const/waittime_h = 1800 //upper bound on time before intercept arrives (in tenths of seconds) @@ -35,7 +35,7 @@ var/global/vox_kills = 0 //Used to check the Inviolate. if(!..()) return 0 - var/list/candidates = get_players_for_role(BE_OPERATIVE) + var/list/candidates = get_players_for_role(BE_RAIDER) var/raider_num = 0 //Check that we have enough vox. diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index d405a9e1f6..62c44f0332 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -15,6 +15,7 @@ var/global/list/special_roles = list( //keep synced with the defines BE_* in set "cultist" = IS_MODE_COMPILED("cult"), // 8 "infested monkey" = IS_MODE_COMPILED("monkey"), // 9 "ninja" = "true", // 10 + "vox raider" = IS_MODE_COMPILED("heist"), // 11 ) var/const/MAX_SAVE_SLOTS = 10