diff --git a/Client/WebQuake/Host.js b/Client/WebQuake/Host.js index 8d9585f..79c58be 100644 --- a/Client/WebQuake/Host.js +++ b/Client/WebQuake/Host.js @@ -649,7 +649,7 @@ Host.Savegame_f = function() if ((type & 0x8000) === 0) continue; type &= 0x7fff; - if ((type !== PR.etype.ev_string) && (type !== PR.etype.ev_float) && (type !== PR.etype.entity)) + if ((type !== PR.etype.ev_string) && (type !== PR.etype.ev_float) && (type !== PR.etype.ev_entity)) continue; f[f.length] = '"' + PR.GetString(def.name) + '" "' + PR.UglyValueString(type, PR.globals, def.ofs) + '"\n'; } @@ -1431,4 +1431,4 @@ Host.InitCommands = function() Cmd.AddCommand('viewnext', Host.Viewnext_f); Cmd.AddCommand('viewprev', Host.Viewprev_f); Cmd.AddCommand('mcache', Mod.Print); -}; \ No newline at end of file +};