diff options
| author | lempamo <[email protected]> | 2017-08-14 13:13:53 -0400 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-08-14 13:13:53 -0400 |
| commit | 1f59dd91abdfc0a320e60cfcad2ef2917af7ddcf (patch) | |
| tree | b5bc10c64f8a02725f333297588e6df9c62f8b0c /TimeHACK.Engine/SaveSystem.cs | |
| parent | db4f74d257d2aeaba0e2cb354d30c005da511238 (diff) | |
| download | histacom2-1f59dd91abdfc0a320e60cfcad2ef2917af7ddcf.tar.gz histacom2-1f59dd91abdfc0a320e60cfcad2ef2917af7ddcf.tar.bz2 histacom2-1f59dd91abdfc0a320e60cfcad2ef2917af7ddcf.zip | |
wordpad gui improvement part 1
Diffstat (limited to 'TimeHACK.Engine/SaveSystem.cs')
| -rw-r--r-- | TimeHACK.Engine/SaveSystem.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/TimeHACK.Engine/SaveSystem.cs b/TimeHACK.Engine/SaveSystem.cs index 9646876..6b8a90d 100644 --- a/TimeHACK.Engine/SaveSystem.cs +++ b/TimeHACK.Engine/SaveSystem.cs @@ -597,7 +597,9 @@ namespace TimeHACK.Engine public static byte[] GetAchievements() { - byte[] byt = new byte[] { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; + 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 }; 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")); |
