From 39461754cb78c4427ee59a41d8a565c74372ebce Mon Sep 17 00:00:00 2001 From: JezuzLizard Date: Sat, 22 Feb 2020 14:53:09 -0800 Subject: [PATCH] Update main.gsc fixed typo and removed unnecessary function --- GriefFix/main.gsc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/GriefFix/main.gsc b/GriefFix/main.gsc index c203f99..a0699b5 100644 --- a/GriefFix/main.gsc +++ b/GriefFix/main.gsc @@ -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(); } }