diff --git a/maps/mp/bots/_menu.gsc b/maps/mp/bots/_menu.gsc index 6aa1d59..69c7306 100644 --- a/maps/mp/bots/_menu.gsc +++ b/maps/mp/bots/_menu.gsc @@ -771,6 +771,10 @@ addOptions() _temp = "bots used as team balance"; break; + case 5: + _temp = "bots used as team balance, adjust to map"; + break; + default: _temp = "out of range"; break; @@ -1363,6 +1367,11 @@ man_bots( a, b ) self iprintln( "bot_fill will now use bots as team balance." ); break; + case 4: + setdvar( "bots_manage_fill_mode", 5 ); + self iprintln( "bot_fill will now use bots as team balance, adjusting to map." ); + break; + default: setdvar( "bots_manage_fill_mode", 0 ); self iprintln( "bot_fill will now count everyone." );