Skip to content

Commit

Permalink
- bump version requirement to 219 for defcvars
Browse files Browse the repository at this point in the history
  • Loading branch information
madame-rachelle committed Jan 1, 2020
1 parent 7156611 commit 0d60a0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/console/c_cvars.cpp
Expand Up @@ -1769,8 +1769,8 @@ void C_GrabCVarDefaults ()
lumpversion = sc.Number;
if (lumpversion > gamelastrunversion)
sc.ScriptError("Unsupported version %i (%i supported)", lumpversion, gamelastrunversion);
if (lumpversion < 218)
sc.ScriptError("Version must be at least 218 (current version %i)", gamelastrunversion);
if (lumpversion < 219)
sc.ScriptError("Version must be at least 219 (current version %i)", gamelastrunversion);

FBaseCVar *var;

Expand Down

0 comments on commit 0d60a0f

Please sign in to comment.