diff --git a/sp/src/game/server/ez2/ez2_save_metadata.cpp b/sp/src/game/server/ez2/ez2_save_metadata.cpp index dadc24dfa3..4516aa4475 100644 --- a/sp/src/game/server/ez2/ez2_save_metadata.cpp +++ b/sp/src/game/server/ez2/ez2_save_metadata.cpp @@ -14,6 +14,15 @@ class CCustomSaveMetadata : public CAutoGameSystem { public: + bool Init() + { + ConVarRef save_history_count("save_history_count"); + ConVarRef sv_save_history_count_archived("sv_save_history_count_archived"); + Msg("Setting save_history_count to %d....\n", sv_save_history_count_archived.GetInt()); + save_history_count.SetValue(sv_save_history_count_archived.GetInt()); + return true; + } + void OnSave() {