1
0
mirror of https://github.com/XLabsProject/iw4x-rawfiles.git synced 2023-08-02 15:02:11 +02:00

Replace questionable patch with less questionable code

This commit is contained in:
FutureRave 2022-03-02 18:05:33 +00:00
parent 71e848b77d
commit 37af65985f
No known key found for this signature in database
GPG Key ID: E883E2BC9657D955

View File

@ -1,9 +1,21 @@
#include maps\mp\_utility;
/*
Author: Intricate, Diamante
Dvars:
- scr_player_forceautoassign <bool>
false - (default) default game behaviour
true - players will be automatically assigned to a team
Notes: fs_game check was removed as the default value is now false.
If a server owner decides to set it to true, its their choice regardless of loaded mods.
Mods should replace this file in case of conflicts.
*/
init()
{
//Intricate - Create DVAR for forcing auto assign, useful for server that would like it.
SetDvarIfUninitialized("scr_player_forceautoassign", true);
SetDvarIfUninitialized( "scr_player_forceautoassign", false );
if ( !isDefined( game["gamestarted"] ) )
{
game["menu_team"] = "team_marinesopfor";
@ -348,9 +360,8 @@ beginClassChoice( forceNewChoice )
beginTeamChoice()
{
//Intricate - We put the auto assign where the actual team selection is. Also make sure that a mod isn't loaded, mainly to prevent bugs with them.
if( GetDvar("scr_player_forceautoassign") && GetDvar("fs_game") == "" )
self notify("menuresponse", game["menu_team"], "autoassign");
if ( getDvarInt( "scr_player_forceautoassign" ) != 0 )
self notify( "menuresponse", game["menu_team"], "autoassign");
else
self openpopupMenu( game["menu_team"] );