pull/26/merge
efinst0rm 2024-06-16 13:28:09 +00:00 committed by GitHub
commit 9119d42914
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 5 deletions

View File

@ -7,11 +7,7 @@ init()
{
level.scoreInfo = [];
level.xpScale = getDvarInt( "scr_xpscale" );
if ( level.xpScale > 4 || level.xpScale < 0)
exitLevel( false );
level.xpScale = min( level.xpScale, 4 );
level.xpScale = max( level.xpScale, 0 );
level.rankTable = [];
@ -760,4 +756,4 @@ syncXPStat()
xp = self getRankXP();
self maps\mp\gametypes\_persistence::statSet( "experience", xp );
}
}