- bump version requirement to 219 for defcvars

This commit is contained in:
Rachael Alexanderson 2019-12-31 23:49:44 -05:00 committed by drfrag
parent 6f24cc29c9
commit 12f356f24e

View file

@ -1977,8 +1977,8 @@ void C_GrabCVarDefaults ()
lumpversion = sc.Number; lumpversion = sc.Number;
if (lumpversion > gamelastrunversion) if (lumpversion > gamelastrunversion)
sc.ScriptError("Unsupported version %i (%i supported)", lumpversion, gamelastrunversion); sc.ScriptError("Unsupported version %i (%i supported)", lumpversion, gamelastrunversion);
if (lumpversion < 218) if (lumpversion < 219)
sc.ScriptError("Version must be at least 218 (current version %i)", gamelastrunversion); sc.ScriptError("Version must be at least 219 (current version %i)", gamelastrunversion);
FBaseCVar *var; FBaseCVar *var;