feat(gsc): add scr_forcerankedmatch dvar
All checks were successful
test / Test on Linux (push) Successful in 8s

This commit is contained in:
6arelyFuture 2024-03-27 13:29:37 +00:00
parent e67607bac0
commit 7cca7a2931

View File

@ -0,0 +1,12 @@
init()
{
if ( getdvarint( "scr_forcerankedmatch" ) == 1 )
{
level.onlineGame = true;
level.rankedmatch = true;
/#
print( "[script]: Forced ranked\n" );
#/
}
}