Allow ints to save too, in case anyone tries using them, ever.

This commit is contained in:
Spike 2018-05-08 23:45:33 +01:00 committed by Shpoike
parent df3db3b821
commit d02c4e010c

View file

@ -638,7 +638,7 @@ void ED_WriteGlobals (FILE *f)
continue;
type &= ~DEF_SAVEGLOBAL;
if (type != ev_string && type != ev_float && type != ev_entity)
if (type != ev_string && type != ev_float && type != ev_ext_integer && type != ev_entity)
continue;
name = PR_GetString(def->s_name);