Commented 2 assert functions out in patch_mp/maps/.mp/gametypes/_globallogic.gsc.

This commit is contained in:
JezuzLizard 2021-03-22 11:19:42 -07:00
parent 007237c544
commit f4d36781ec

View File

@ -2071,7 +2071,9 @@ removeDisconnectedPlayerFromPlacement() //checked matches bo3 _globallogic.gsc w
return; return;
level.placement["all"][ numPlayers - 1 ] = undefined; level.placement["all"][ numPlayers - 1 ] = undefined;
/*
assert( level.placement["all"].size == numPlayers - 1 ); assert( level.placement["all"].size == numPlayers - 1 );
*/
/* /*
/# /#
maps\mp\gametypes\_globallogic_utils::assertProperPlacement(); maps\mp\gametypes\_globallogic_utils::assertProperPlacement();
@ -2420,8 +2422,9 @@ updateTeamStatus() //checked matches bo3 _globallogic.gsc within reason
checkTeamScoreLimitSoon( team ) //checked matches bo3 _globallogic.gsc within reason checkTeamScoreLimitSoon( team ) //checked matches bo3 _globallogic.gsc within reason
{ {
/*
assert( IsDefined( team ) ); assert( IsDefined( team ) );
*/
if ( level.scoreLimit <= 0 ) if ( level.scoreLimit <= 0 )
return; return;