From 7342ab70bc3532a50baf9bb20f99fa755738b69e Mon Sep 17 00:00:00 2001 From: JezuzLizard Date: Sat, 22 Feb 2020 14:58:12 -0800 Subject: [PATCH] Update main.gsc changed level.player_quota_active = 0 to 1 by default since this is for grief --- GriefFix/main.gsc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GriefFix/main.gsc b/GriefFix/main.gsc index a0699b5..7d58c70 100644 --- a/GriefFix/main.gsc +++ b/GriefFix/main.gsc @@ -20,7 +20,7 @@ init() level.wait_time = 30; //change this to adjust the start time once the player quota is met //this also gives players time to rejoin a game after its ended level.player_invulernability_active = 1; - level.player_quota_active = 0; //set this to 0 to disable player quotas recommended to be 1 for grief + level.player_quota_active = 1; //set this to 0 to disable player quotas recommended to be 1 for grief level.player_quota = 2; //number of players required before the game starts level.waiting = 0; level.countdown_start = 0;