You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
g_cvAutocompletePrefixes=newConvar("smc_autocomplete_prefixes", "bhop_,surf_,kz_,kz_bhop_,bhop_kz_,xc_,trikz_,jump_,rj_", "Some prefixes that are attempted when using !map");
208
209
209
210
g_cvMapVoteBlockMapInterval=newConvar("smc_mapvote_blockmap_interval", "1", "How many maps should be played before a map can be nominated again", _, true, 0.0, false);
211
+
g_cvMapVotePrioritizeSpecial=newConvar("smc_mapvote_prioritize_special", "1", "Whether to prioritize extend, dontchange, and reroll for ties.", _, true, 0.0, true, 1.0);
210
212
g_cvMapVoteEnableNoVote=newConvar("smc_mapvote_enable_novote", "1", "Whether players are able to choose 'No Vote' in map vote", _, true, 0.0, true, 1.0);
211
213
g_cvMapVoteEnableReRoll=newConvar("smc_mapvote_enable_reroll", "0", "Whether players are able to choose 'ReRoll' in map vote", _, true, 0.0, true, 1.0);
212
214
g_cvMapVoteExtendLimit=newConvar("smc_mapvote_extend_limit", "3", "How many times players can choose to extend a single map (0 = block extending, -1 = infinite extending)", _, true, -1.0, false);
@@ -896,12 +898,50 @@ public Action Timer_StartMapVote(Handle timer, DataPack data)
896
898
returnPlugin_Stop;
897
899
}
898
900
901
+
// If for example a map & extend have the same number of votes, then we want to pick extend.
0 commit comments