diff --git a/Carter Games/Save Manager/Code/Editor/Utility/AssetVersionData.cs b/Carter Games/Save Manager/Code/Editor/Utility/AssetVersionData.cs
index 0d75ddd..5cc6e3d 100644
--- a/Carter Games/Save Manager/Code/Editor/Utility/AssetVersionData.cs
+++ b/Carter Games/Save Manager/Code/Editor/Utility/AssetVersionData.cs
@@ -31,7 +31,7 @@ public static class AssetVersionData
///
/// The version number of the asset.
///
- public static string VersionNumber => "2.1.7";
+ public static string VersionNumber => "2.1.8";
///
@@ -40,6 +40,6 @@ public static class AssetVersionData
///
/// Asset owner is in the UK, so its D/M/Y format.
///
- public static string ReleaseDate => "11/05/2024";
+ public static string ReleaseDate => "20/05/2024";
}
}
\ No newline at end of file
diff --git a/Carter Games/Save Manager/Code/Runtime/Saving/Automation/AutoSave.cs b/Carter Games/Save Manager/Code/Runtime/Saving/Automation/AutoSave.cs
index 1359667..339fe57 100644
--- a/Carter Games/Save Manager/Code/Runtime/Saving/Automation/AutoSave.cs
+++ b/Carter Games/Save Manager/Code/Runtime/Saving/Automation/AutoSave.cs
@@ -76,7 +76,7 @@ private void OnApplicationQuit()
private void OnApplicationFocus(bool hasFocus)
{
#if !UNITY_EDITOR
- if (!AssetAccessor.GetAsset().AutoSave) return;
+ if (!AssetAccessor.GetAsset().AutoSave) return;
if (hasFocus) return;
SaveManager.Save(false);
#endif