Update main.gsc

fixed typo and removed unnecessary function
This commit is contained in:
JezuzLizard 2020-02-22 14:53:09 -08:00 committed by GitHub
parent 19a1e7b253
commit 39461754cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,12 +28,11 @@ init()
SetDvar( "scr_zm_enable_bots", "1" ); //this is required for the mod to work
thread add_bots(); //this overrides the typical start time logic
level.default_solo_laststandpistol = "m1911_zm"; //prevents players from having the solo pistol when downed in grief
thread pregameResetPrevention();
for(;;)
{
level waittill("connected", player);
player thread teamBalancing();
player thread pregameInvulernability();
player thread pregameInvulnernability();
}
}