From 7919e1da05fc52d037415102c5628afe1990c7cb Mon Sep 17 00:00:00 2001 From: lempamo Date: Mon, 2 Oct 2017 14:20:29 -0400 Subject: wc98 is DONE! --- Histacom2.Engine/SaveSystem.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Histacom2.Engine/SaveSystem.cs') diff --git a/Histacom2.Engine/SaveSystem.cs b/Histacom2.Engine/SaveSystem.cs index 79333bd..48fec8a 100644 --- a/Histacom2.Engine/SaveSystem.cs +++ b/Histacom2.Engine/SaveSystem.cs @@ -681,9 +681,9 @@ namespace Histacom2.Engine public static byte[] GetAchievements() { - byte[] byt = new byte[] { 0, // Piracy Ending - 0, // End of Internet Ending - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; + byte[] byt = new byte[] { 0, // 0 - Piracy Ending + 0, // 1 - End of Internet Ending + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; // 20 - Minesweeper Hard Mode if (DevMode) File.WriteAllBytes(Path.Combine(DataDirectory, "achieved.thack"), byt); if (File.Exists(Path.Combine(DataDirectory, "achieved.thack"))) byt = File.ReadAllBytes(Path.Combine(DataDirectory, "achieved.thack")); -- cgit v1.2.3