Score limit has been capped to 9 digits.

Turns out anything higher is not actually reachable in practice.
This commit is contained in:
Mari the Deer 2022-04-17 02:23:29 +02:00
commit 807d1ef349
18 changed files with 62 additions and 152 deletions

View file

@ -102,7 +102,7 @@ extend Class SWWMHandler
{
if ( !playeringame[i] || (players[i].playerstate != PST_DEAD) ) continue;
let c = SWWMCredits.Find(players[i]);
if ( c ) c.credits = c.hcredits = 0;
if ( c ) c.credits = 0;
}
// end of episode resets and enforced pistol starts
LevelInfo nextlv = LevelInfo.FindLevelInfo(e.NextMap);