1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-07-05 03:19:06 -05:00

Grief: spawn bots code active in private match

This commit is contained in:
Jbleezy
2021-12-29 17:11:42 -08:00
parent cd74c9a1c1
commit 919b7c27eb

View File

@ -68,7 +68,7 @@ init()
level thread unlimited_zombies();
level thread remove_status_icons_on_end_game();
level thread random_map_rotation();
//level thread spawn_bots(7);
level thread spawn_bots(7);
}
set_team()
@ -1776,6 +1776,11 @@ random_map_rotation()
spawn_bots(num)
{
if(getDvar("sv_hostname") != "Private Match")
{
return;
}
level waittill( "connected", player );
level.bots = [];