- removed the upper limit of 20 for autosaves.

This commit is contained in:
Christoph Oelckers 2017-01-13 11:59:55 +01:00
parent d73db8c1e8
commit e621b43dd3
1 changed files with 0 additions and 2 deletions

View File

@ -2128,8 +2128,6 @@ CUSTOM_CVAR (Int, autosavecount, 4, CVAR_ARCHIVE|CVAR_GLOBALCONFIG)
{
if (self < 0)
self = 0;
if (self > 20)
self = 20;
}
extern void P_CalcHeight (player_t *);