From e621b43dd36a178316056890382528caee63c353 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 13 Jan 2017 11:59:55 +0100 Subject: [PATCH] - removed the upper limit of 20 for autosaves. --- src/g_game.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/g_game.cpp b/src/g_game.cpp index 6565d5324..77e675b8a 100644 --- a/src/g_game.cpp +++ b/src/g_game.cpp @@ -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 *);